diff options
Diffstat (limited to 'vim/mySnippets/all.snippets')
-rw-r--r-- | vim/mySnippets/all.snippets | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/vim/mySnippets/all.snippets b/vim/mySnippets/all.snippets index 9328a1e..8094025 100644 --- a/vim/mySnippets/all.snippets +++ b/vim/mySnippets/all.snippets @@ -1,3 +1,25 @@ -snippet jul "Jul the boss" -Jul is the boss of ${0:dance} +global !p +def make_comment(): + b, e = vim.eval("&commentstring").split( '%s' ) + return b, e +endglobal + +snippet todo "A universal TODO reminder" b +`!p +comment = make_comment() +snip.rv = comment[ 0 ] +` TODO: ${1:desc} (`!v $USER`, `!v strftime("%c")`) `!p +comment = make_comment() +snip.rv = comment[ 1 ]` +$0 +endsnippet + +snippet fix "A universal FIXME reminder" b +`!p +comment = make_comment() +snip.rv = comment[ 0 ] +` FIXME: ${1:desc} (`!v $USER`, `!v strftime("%c")`) `!p +comment = make_comment() +snip.rv = comment[ 1 ]` +$0 endsnippet |