From b5275a77012af88f874fb58dc60a87c1674a4643 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Sun, 19 Apr 2015 14:20:07 +0100 Subject: Added todo snippets --- vim/mySnippets/all.snippets | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) (limited to 'vim/mySnippets') 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 -- cgit v1.2.3