1
0
mirror of https://github.com/amix/vimrc synced 2025-07-06 07:55:00 +08:00

Revert "Merge from original repo"

This commit is contained in:
Jaeguk Hyun
2022-09-25 19:10:28 +09:00
committed by GitHub
parent 00c59fa5e1
commit 1d193551ef
122 changed files with 371 additions and 5171 deletions

View File

@ -34,11 +34,11 @@ snippet #
# =>
snippet case
case ${1:object}
when $2
when ${2:condition}
${0}
end
snippet when
when $1
when ${1:condition}
${0:${VISUAL}}
snippet def
def ${1:method_name}
@ -55,46 +55,46 @@ snippet descendants
end
end
snippet if
if $1
if ${1:condition}
${0:${VISUAL}}
end
snippet ife
if $1
if ${1:condition}
${2:${VISUAL}}
else
${0}
end
snippet eif
elsif $1
elsif ${1:condition}
${0:${VISUAL}}
snippet ifee
if $1
if ${1:condition}
$2
elsif $3
elsif ${3:condition}
$4
else
$0
end
snippet unless
unless $1
unless ${1:condition}
${0:${VISUAL}}
end
snippet unlesse
unless $1
unless ${1:condition}
$2
else
$0
end
snippet unlesee
unless $1
unless ${1:condition}
$2
elsif $3
elsif ${3:condition}
$4
else
$0
end
snippet wh
while $1
while ${1:condition}
${0:${VISUAL}}
end
snippet for
@ -102,7 +102,7 @@ snippet for
${0}
end
snippet until
until $1
until ${1:condition}
${0:${VISUAL}}
end
snippet cla class .. end