1
0
mirror of https://github.com/amix/vimrc synced 2025-07-14 07:15:01 +08:00

Update the plugins

This commit is contained in:
Rob Loach
2024-09-19 00:58:15 -04:00
parent ee7e062909
commit 22cf44758f
197 changed files with 306893 additions and 203607 deletions

View File

@ -59,7 +59,7 @@ snippet in "interface"
interface{}
snippet inf "full interface "
interface ${1:name} {
type ${1:name} interface {
${2:/* methods */}
}
@ -188,7 +188,7 @@ snippet sr "string"
string
snippet st "struct"
struct ${1:name} {
type ${1:name} struct {
${2:/* data */}
}
${0}