From bda2f8ae6475665d98dcbcb5a47ea705cc835265 Mon Sep 17 00:00:00 2001 From: ujihisa Date: Sun, 14 Jul 2013 12:37:30 -0700 Subject: [PATCH] Improve lua snippet. --- autoload/neosnippet/snippets/lua.snip | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/autoload/neosnippet/snippets/lua.snip b/autoload/neosnippet/snippets/lua.snip index ba912a7..7675d56 100644 --- a/autoload/neosnippet/snippets/lua.snip +++ b/autoload/neosnippet/snippets/lua.snip @@ -31,3 +31,11 @@ abbr for k, v in ipairs(table) do print(k, v) end +snippet print +alias p +options head + print(${0:TARGET}) + +snippet comment +options head + [[${0:TARGET}]]