Added usefull programming plugins to neovim

This commit is contained in:
2015-07-25 00:44:38 +02:00
parent 48e3d606d0
commit 2e5cd5cfcd
10 changed files with 52 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
#header
snippet header
#ifndef ${1:`toupper(vim_snippets#Filename('$1_H', 'UNTITLED_H'))`}
#define $1
#include "Standard.h"
${0}
#endif
snippet incl
#include "${1:`vim_snippets#Filename('$1.h', 'Untitled.h')`}"
${0}