diff options
author | mattn <mattn.jp@gmail.com> | 2011-10-25 05:12:26 -0700 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2011-10-25 05:12:26 -0700 |
commit | bc5d3c0395d4b55d0e53ed69cf4621b369709200 (patch) | |
tree | 509746cb2b7877b8e29b86b386118e88a5614f01 | |
parent | cc8f5f86208e862d95f9ebc256787bea22404845 (diff) | |
parent | 02d723d0f0dd6f4914c4ea553439883679b718f3 (diff) | |
download | vim-sonictemplate-bc5d3c0395d4b55d0e53ed69cf4621b369709200.tar.gz vim-sonictemplate-bc5d3c0395d4b55d0e53ed69cf4621b369709200.tar.bz2 vim-sonictemplate-bc5d3c0395d4b55d0e53ed69cf4621b369709200.zip |
Merge pull request #1 from Chick307/py
add python 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() + |