Skip to content
This repository has been archived by the owner on Jan 12, 2023. It is now read-only.

Commit

Permalink
Add softtabstop to modeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
Florent Thoumie authored and Florent Thoumie committed May 27, 2011
1 parent 77f4893 commit 1a9d240
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bin/dopackages.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@

build.finish()

# vim: tabstop=2 shiftwidth=2 expandtab
# vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab
2 changes: 1 addition & 1 deletion lib/portbuild/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,4 +267,4 @@ def makecdrom(self):
"""Create cdrom.sh file."""
pass

# vim: tabstop=2 shiftwidth=2 expandtab
# vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab
2 changes: 1 addition & 1 deletion lib/portbuild/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ def __getattr__(self, attr):
except ConfigParser.NoOptionError:
return None

# vim: tabstop=2 shiftwidth=2 expandtab
# vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab
2 changes: 1 addition & 1 deletion lib/portbuild/tarball.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,4 @@ def __init__(self, builddir):
path = os.path.join(builddir, "bindist.tbz")
Tarball.__init__(self, builddir, "bindist", path)

# vim: tabstop=2 shiftwidth=2 expandtab
# vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab
2 changes: 1 addition & 1 deletion lib/portbuild/torrent.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ def create(target):
data = libtorrent.bencode(torrent.generate())
return Torrent(target, data=data)

# vim: tabstop=2 shiftwidth=2 expandtab
# vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab
2 changes: 1 addition & 1 deletion lib/portbuild/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ def shell_cmd(cmd, env=None, cwd=None, quiet=False):
for line in cmd.stdout.readlines():
print line.rstrip()

# vim: tabstop=2 shiftwidth=2 expandtab
# vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab
2 changes: 1 addition & 1 deletion tests/tarball.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ def test_eq_none(self):
if __name__ == '__main__':
unittest.main()

# vim: tabstop=2 shiftwidth=2 expandtab
# vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab
2 changes: 1 addition & 1 deletion tests/torrent.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ def test_add_torrentalreadyadded(self):
if __name__ == '__main__':
unittest.main()

# vim: tabstop=2 shiftwidth=2 expandtab
# vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab

0 comments on commit 1a9d240

Please sign in to comment.