diff options
author | mattn <mattn.jp@gmail.com> | 2015-12-06 00:56:54 +0900 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2015-12-06 00:56:54 +0900 |
commit | efa8ef04f1ab24cd7c53af0f594baf64e9397437 (patch) | |
tree | b898c896a27bdf67e92761f25930beb69da1cef2 | |
parent | 8d1870bebbba43dc17426f4757fc63314bc32ec7 (diff) | |
parent | 091dc637c9e15e2817c48b4ee41ca6636e02b87e (diff) | |
download | vim-sonictemplate-efa8ef04f1ab24cd7c53af0f594baf64e9397437.tar.gz vim-sonictemplate-efa8ef04f1ab24cd7c53af0f594baf64e9397437.tar.bz2 vim-sonictemplate-efa8ef04f1ab24cd7c53af0f594baf64e9397437.zip |
Merge pull request #21 from zchee/go-cgo
Add cgo template
-rw-r--r-- | template/go/base-cgo.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/template/go/base-cgo.go b/template/go/base-cgo.go new file mode 100644 index 0000000..50dab19 --- /dev/null +++ b/template/go/base-cgo.go @@ -0,0 +1,7 @@ +package {{_name_}} + +/* +#include {{_cursor_}} + +*/ +import "C" |