1
0
mirror of https://github.com/amix/vimrc synced 2025-06-16 01:25:00 +08:00

plugin updates

plugin updates
This commit is contained in:
Geezus
2019-05-16 14:44:54 -05:00
parent e73d906a54
commit 8649b3bf27
163 changed files with 1376 additions and 3542 deletions

View File

@ -16,21 +16,21 @@ namespace ${1:MyNamespace}
endsnippet
snippet class "class" w
${1:public} class ${2:`!p snip.rv = snip.basename`}
${1:public} class ${2:MyClass}
{
$0
}
endsnippet
snippet struct "struct" w
struct ${1:`!p snip.rv = snip.basename`}
struct ${1:MyStruct}
{
$0
}
endsnippet
snippet interface "interface" w
interface I${1:`!p snip.rv = snip.basename`}
interface I${1:Interface}
{
$0
}