mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-03 01:39:23 +01:00
c803e5e9d8
consistent between developers. Jeremy should be adding the equivalent settings for emacs soon.
13 lines
272 B
Python
Executable File
13 lines
272 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
import shutil
|
|
|
|
if len(sys.argv) < 2:
|
|
print 'Usage: %s <plugin name>' % sys.argv[0]
|
|
sys.exit(-1)
|
|
|
|
shutil.copy('plugins/template.py', 'plugins/%s.py' % sys.argv[1])
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|