From acedab79ce7e24e34d6fcb1b4aa9bf61c1694966 Mon Sep 17 00:00:00 2001 From: ujihisa Date: Mon, 10 Jun 2013 18:04:02 -0700 Subject: [PATCH] Added Makefile snip. --- autoload/neosnippet/snippets/make.snip | 8 ++++++++ doc/neosnippet.txt | 1 + 2 files changed, 9 insertions(+) create mode 100644 autoload/neosnippet/snippets/make.snip diff --git a/autoload/neosnippet/snippets/make.snip b/autoload/neosnippet/snippets/make.snip new file mode 100644 index 0000000..0e7830f --- /dev/null +++ b/autoload/neosnippet/snippets/make.snip @@ -0,0 +1,8 @@ +snippet CFLAGS +options head + CFLAGS=-Wall -g ${0: -llua -lzeromq} + +snippet clean: +options head + clean: + rm -f ${0} diff --git a/doc/neosnippet.txt b/doc/neosnippet.txt index be40aee..780985d 100755 --- a/doc/neosnippet.txt +++ b/doc/neosnippet.txt @@ -724,6 +724,7 @@ CHANGELOG *neosnippet-changelog* 2013-06-10 - Added sshconfig snip. +- Added Makefile snip. 2013-06-08 - Improved context filetype check.