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

Updated plugins

This commit is contained in:
Amir
2024-10-06 10:25:50 +02:00
parent ee7e062909
commit 46294d589d
202 changed files with 306918 additions and 203617 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}