diff options
| author | mattn <mattn.jp@gmail.com> | 2012-04-13 13:11:17 +0900 |
|---|---|---|
| committer | mattn <mattn.jp@gmail.com> | 2012-04-13 13:11:17 +0900 |
| commit | 7e2c231888ded45c9c78d282efe3d9d6c4b2bd19 (patch) | |
| tree | 81816ab5ea7b75a06537efe38da2d21e79b3ef59 /template/python | |
| parent | a3b1d956c4a7311469b05c32e75dc4f067e7c271 (diff) | |
| parent | cc759ac441d910f4b47a378e02301c538a05ca1e (diff) | |
| download | vim-sonictemplate-7e2c231888ded45c9c78d282efe3d9d6c4b2bd19.tar.gz vim-sonictemplate-7e2c231888ded45c9c78d282efe3d9d6c4b2bd19.tar.bz2 vim-sonictemplate-7e2c231888ded45c9c78d282efe3d9d6c4b2bd19.zip | |
Merge branch 'master' of github.com:mattn/sonictemplate-vim
Diffstat (limited to 'template/python')
| -rw-r--r-- | template/python/base-class.py | 7 | ||||
| -rw-r--r-- | template/python/snip-class.py | 3 | ||||
| -rw-r--r-- | template/python/snip-doc.py | 3 |
3 files changed, 13 insertions, 0 deletions
diff --git a/template/python/base-class.py b/template/python/base-class.py new file mode 100644 index 0000000..a606982 --- /dev/null +++ b/template/python/base-class.py @@ -0,0 +1,7 @@ +""" +{{_name_}} +""" + +class {{_expr_:substitute('{{_input_:name}}', '\w\+', '\u\0', '')}}: + def __init__(self): + {{_cursor_}} diff --git a/template/python/snip-class.py b/template/python/snip-class.py new file mode 100644 index 0000000..9ed48aa --- /dev/null +++ b/template/python/snip-class.py @@ -0,0 +1,3 @@ +class {{_expr_:substitute('{{_input_:name}}', '\w\+', '\u\0', '')}}: + def __init__(self): + {{_cursor_}} diff --git a/template/python/snip-doc.py b/template/python/snip-doc.py new file mode 100644 index 0000000..8612028 --- /dev/null +++ b/template/python/snip-doc.py @@ -0,0 +1,3 @@ +""" +{{_cursor_}} +""" |
