⚰️ refactor(nvim): Remove unneeded snipmate snippets
This commit is contained in:
parent
0620569745
commit
6278a9ce37
1 changed files with 0 additions and 44 deletions
|
@ -1,44 +0,0 @@
|
||||||
# Shebang
|
|
||||||
snippet #! "shebang"
|
|
||||||
#!/usr/bin/env fish
|
|
||||||
|
|
||||||
snippet if "if ... end"
|
|
||||||
if $1
|
|
||||||
${0:${VISUAL}}
|
|
||||||
end
|
|
||||||
|
|
||||||
snippet elif "else if ..."
|
|
||||||
else if $1
|
|
||||||
${0:${VISUAL}}
|
|
||||||
|
|
||||||
snippet fori "for ... in ... end"
|
|
||||||
for $1 in $2
|
|
||||||
${0:${VISUAL}}
|
|
||||||
end
|
|
||||||
|
|
||||||
snippet wh "while ... end"
|
|
||||||
while $1
|
|
||||||
${0:${VISUAL}}
|
|
||||||
end
|
|
||||||
|
|
||||||
snippet wht "while true ... end"
|
|
||||||
while true
|
|
||||||
${0:${VISUAL}}
|
|
||||||
end
|
|
||||||
|
|
||||||
snippet sw "switch ... case ... end"
|
|
||||||
switch $1
|
|
||||||
case $2
|
|
||||||
${0:${VISUAL}}
|
|
||||||
end
|
|
||||||
|
|
||||||
snippet func "function ... end"
|
|
||||||
function $1
|
|
||||||
${0:${VISUAL}}
|
|
||||||
end
|
|
||||||
|
|
||||||
snippet dn "&>/dev/null"
|
|
||||||
&>/dev/null
|
|
||||||
|
|
||||||
snippet abbr "abbr -a ... --position ..."
|
|
||||||
abbr -a $1 --position ${2:command} "${3:${VISUAL}}"$0
|
|
Loading…
Reference in a new issue