diff options
author | Chick307 <chick307@gmail.com> | 2011-10-25 18:51:27 +0900 |
---|---|---|
committer | Chick307 <chick307@gmail.com> | 2011-10-25 19:16:10 +0900 |
commit | 02d723d0f0dd6f4914c4ea553439883679b718f3 (patch) | |
tree | 509746cb2b7877b8e29b86b386118e88a5614f01 /template | |
parent | cc8f5f86208e862d95f9ebc256787bea22404845 (diff) | |
download | vim-sonictemplate-02d723d0f0dd6f4914c4ea553439883679b718f3.tar.gz vim-sonictemplate-02d723d0f0dd6f4914c4ea553439883679b718f3.tar.bz2 vim-sonictemplate-02d723d0f0dd6f4914c4ea553439883679b718f3.zip |
add python template.
Diffstat (limited to 'template')
-rw-r--r-- | template/main.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/template/main.py b/template/main.py new file mode 100644 index 0000000..6f1b9a0 --- /dev/null +++ b/template/main.py @@ -0,0 +1,10 @@ +# vim: fileencoding=utf-8 + + +def main(): + {{_cursor_}} + + +if __name__ == '__main__': + main() + |