Skip to content

Commit 72cbdf5

Browse files
committed
added vim modelines
1 parent 212bde0 commit 72cbdf5

File tree

5 files changed

+12
-0
lines changed

5 files changed

+12
-0
lines changed

mutag.py

+2
Original file line numberDiff line numberDiff line change
@@ -222,3 +222,5 @@ def eval_command(opts, args):
222222
except EOFError:
223223
print("")
224224
sys.exit()
225+
226+
# vim: expandtab:shiftwidth=4:tabstop=4:softtabstop=4:textwidth=80

mutag/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,6 @@
1818
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1919

2020
__version__ = "0.1"
21+
22+
23+
# vim: expandtab:shiftwidth=4:tabstop=4:softtabstop=4:textwidth=80

mutag/message.py

+2
Original file line numberDiff line numberDiff line change
@@ -255,3 +255,5 @@ def __str__(self):
255255
for k in self:
256256
ret = ret + '{0}: {1}\n'.format(k, str(self[k]))
257257
return ret
258+
259+
# vim: expandtab:shiftwidth=4:tabstop=4:softtabstop=4:textwidth=80

mutag/mutag.py

+2
Original file line numberDiff line numberDiff line change
@@ -383,3 +383,5 @@ def update_mtime(self, dryrun=False):
383383
if len(L) > 0:
384384
mtime = max([int(os.stat(mp).st_mtime) for mp in L])
385385
if not dryrun: self.save_last_mtime(mtime)
386+
387+
# vim: expandtab:shiftwidth=4:tabstop=4:softtabstop=4:textwidth=80

setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
author_email = '[email protected]',
2929
packages = ['mutag', 'mutag.archui'],
3030
scripts = ['bin/mutag'])
31+
32+
33+
# vim: expandtab:shiftwidth=4:tabstop=4:softtabstop=4:textwidth=80

0 commit comments

Comments
 (0)