]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vim/ftplugin: Add XPTemplate file skeletons for C and Perl.
authorSimon Ruderich <simon@ruderich.org>
Thu, 2 Aug 2012 16:39:00 +0000 (18:39 +0200)
committerSimon Ruderich <simon@ruderich.org>
Thu, 2 Aug 2012 16:39:00 +0000 (18:39 +0200)
vim/ftplugin/c/c.xpt.vim [new file with mode: 0644]
vim/ftplugin/perl/perl.xpt.vim [new file with mode: 0644]

diff --git a/vim/ftplugin/c/c.xpt.vim b/vim/ftplugin/c/c.xpt.vim
new file mode 100644 (file)
index 0000000..7944ece
--- /dev/null
@@ -0,0 +1,56 @@
+" vim: ft=xpt
+
+" XPTemplate template file.
+"
+" Language:     C
+" Maintainer:   Simon Ruderich <simon@ruderich.org>
+" License:      GPL v3+
+
+" Copyright (C) 2012  Simon Ruderich
+"
+" This file is free software: you can redistribute it and/or modify
+" it under the terms of the GNU General Public License as published by
+" the Free Software Foundation, either version 3 of the License, or
+" (at your option) any later version.
+"
+" This file is distributed in the hope that it will be useful,
+" but WITHOUT ANY WARRANTY; without even the implied warranty of
+" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+" GNU General Public License for more details.
+"
+" You should have received a copy of the GNU General Public License
+" along with this file.  If not, see <http://www.gnu.org/licenses/>.
+
+XPTemplate priority=personal
+
+
+XPT c
+XSET year|def=strftime("%Y")
+/*
+ * `description^
+ *
+ * Copyright (C) `year^  Simon Ruderich
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+
+
+int main(int argc, char **argv) {
+    `cursor^
+
+    return EXIT_SUCCESS;
+}
diff --git a/vim/ftplugin/perl/perl.xpt.vim b/vim/ftplugin/perl/perl.xpt.vim
new file mode 100644 (file)
index 0000000..d2ec9fb
--- /dev/null
@@ -0,0 +1,52 @@
+" vim: ft=xpt
+
+" XPTemplate template file.
+"
+" Language:     Perl
+" Maintainer:   Simon Ruderich <simon@ruderich.org>
+" License:      GPL v3+
+
+" Copyright (C) 2012  Simon Ruderich
+"
+" This file is free software: you can redistribute it and/or modify
+" it under the terms of the GNU General Public License as published by
+" the Free Software Foundation, either version 3 of the License, or
+" (at your option) any later version.
+"
+" This file is distributed in the hope that it will be useful,
+" but WITHOUT ANY WARRANTY; without even the implied warranty of
+" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+" GNU General Public License for more details.
+"
+" You should have received a copy of the GNU General Public License
+" along with this file.  If not, see <http://www.gnu.org/licenses/>.
+
+XPTemplate priority=personal
+
+
+XPT perl
+#!/usr/bin/perl
+
+# `description^
+
+# Copyright (C) `year^  Simon Ruderich
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+
+use strict;
+use warnings;
+
+
+`cursor^