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

Replace YanRing with yank-stack and update plugins

This commit is contained in:
amix
2017-12-13 15:05:24 +01:00
parent 2ca843a22a
commit 53894de44b
72 changed files with 1663 additions and 5015 deletions

View File

@ -58,6 +58,10 @@ snippet try
${0}
}
#match
snippet mat
${1:${VISUAL}} match {
case ${2} => ${0}
}
snippet match
${1: obj} match {
case ${2:e} => ${3}
@ -65,7 +69,7 @@ snippet match
}
#case
snippet case
case ${1:value} => ${0}
case ${1:${VISUAL}} => ${0}
############################
# methods and arguments
#