1
0
mirror of https://github.com/amix/vimrc synced 2025-07-05 15:35:01 +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

@ -5,7 +5,7 @@ snippet local
local ${1:x} = ${0:1}
snippet fun
function ${1:fname}(${2:...})
$0
${0:-- body}
end
snippet for
for ${1:i}=${2:1},${3:10} do
@ -13,60 +13,34 @@ snippet for
end
snippet forp
for ${1:i},${2:v} in pairs(${3:table_name}) do
$0
${0:-- body}
end
snippet fori
for ${1:i},${2:v} in ipairs(${3:table_name}) do
$0
${0:-- body}
end
snippet if
if $1 then
$2
if ${1:condition} then
${2:-- body}
end
snippet ife
if $1 then
if ${1:condition} then
${2:-- if condition}
else
${0:-- else}
end
snippet elif
elseif $1 then
$0
elseif ${1:condition} then
${0:--body}
snippet repeat
repeat
$1
until $0
${1:--body}
until ${0:condition}
snippet while
while $1 do
$0
end
snippet wh
while ${1:true} do
${0}
end
snippet wht
while true do
${0}
while ${1:condition} do
${0:--body}
end
snippet print
print("${1:string}")
snippet pr
print($0)
snippet prs
print("$0")
snippet prf
print(string.format("${1:%s}"$0))
snippet wr
io.write($0)
snippet wrs
io.write("$0")
snippet wrf
io.write(string.format("${1:%s}"$0))
snippet fwr
io.${1:stderr}:write($0)
snippet fwrs
io.${1:stderr}:write("$0")
snippet fwrf
io.${1:stderr}:write(string.format("${2:%s}"$0))
snippet im
import "${1:import file}"