aboutsummaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
authormattn <mattn.jp@gmail.com>2011-10-25 10:23:00 +0900
committermattn <mattn.jp@gmail.com>2011-10-25 10:23:00 +0900
commit2c81841396b1505461775c3ba65f7880a57bb7b1 (patch)
treec1a220f4ce8c5583f08103dfcc7d3c5745664561 /template
downloadvim-sonictemplate-2c81841396b1505461775c3ba65f7880a57bb7b1.tar.gz
vim-sonictemplate-2c81841396b1505461775c3ba65f7880a57bb7b1.tar.bz2
vim-sonictemplate-2c81841396b1505461775c3ba65f7880a57bb7b1.zip
first import.
Diffstat (limited to 'template')
-rw-r--r--template/main.c7
-rw-r--r--template/main.cpp8
-rw-r--r--template/main.go5
-rw-r--r--template/package.go3
-rw-r--r--template/package.perl9
-rw-r--r--template/script.perl5
-rw-r--r--template/test.perl6
7 files changed, 43 insertions, 0 deletions
diff --git a/template/main.c b/template/main.c
new file mode 100644
index 0000000..f2a929b
--- /dev/null
+++ b/template/main.c
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int
+main(int argc, char* argv[]) {
+ {{_cursor_}}
+ return 0;
+}
diff --git a/template/main.cpp b/template/main.cpp
new file mode 100644
index 0000000..c413be8
--- /dev/null
+++ b/template/main.cpp
@@ -0,0 +1,8 @@
+#include <iostream>
+#include <string>
+
+int
+main(int argc, char* argv[]) {
+ {{_cursor_}}
+ return 0;
+}
diff --git a/template/main.go b/template/main.go
new file mode 100644
index 0000000..fb96c46
--- /dev/null
+++ b/template/main.go
@@ -0,0 +1,5 @@
+package main
+
+func main() {
+ {{_cursor_}}
+}
diff --git a/template/package.go b/template/package.go
new file mode 100644
index 0000000..14586d8
--- /dev/null
+++ b/template/package.go
@@ -0,0 +1,3 @@
+package {{_name_}}
+
+{{_cursor_}}
diff --git a/template/package.perl b/template/package.perl
new file mode 100644
index 0000000..b4fa22c
--- /dev/null
+++ b/template/package.perl
@@ -0,0 +1,9 @@
+package {{_expr_:substitute(substitute(substitute(expand('%'), '.*lib[\\/]', '', 'g'), '[\\/]', '::', 'g'), '\.pm$', '', 'g')}};
+
+use strict;
+use warnings;
+use utf8;
+
+{{_cursor_}}
+
+1
diff --git a/template/script.perl b/template/script.perl
new file mode 100644
index 0000000..01e3ce9
--- /dev/null
+++ b/template/script.perl
@@ -0,0 +1,5 @@
+use strict;
+use warnings;
+use utf8;
+
+{{_cursor_}}
diff --git a/template/test.perl b/template/test.perl
new file mode 100644
index 0000000..3971050
--- /dev/null
+++ b/template/test.perl
@@ -0,0 +1,6 @@
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+
+{{_cursor_}}