diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2021-04-26 15:08:41 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2021-04-26 20:34:12 +0200 |
commit | 740243411e21c18bb30051b43aa0140a180fab33 (patch) | |
tree | 9cc326193c9c680faeda5356cee5d8ff364e51cb /.vim/snippets/sh.snippets | |
parent | f179a5690ee59df214b4f3a90049b9bcdfce8712 (diff) |
Remove snipMate
Diffstat (limited to '.vim/snippets/sh.snippets')
-rw-r--r-- | .vim/snippets/sh.snippets | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/.vim/snippets/sh.snippets b/.vim/snippets/sh.snippets deleted file mode 100644 index f035126..0000000 --- a/.vim/snippets/sh.snippets +++ /dev/null @@ -1,28 +0,0 @@ -# #!/bin/bash -snippet #! - #!/bin/bash - -snippet if - if [[ ${1:condition} ]]; then - ${2:#statements} - fi -snippet elif - elif [[ ${1:condition} ]]; then - ${2:#statements} -snippet for - for (( ${2:i} = 0; $2 < ${1:count}; $2++ )); do - ${3:#statements} - done -snippet wh - while [[ ${1:condition} ]]; do - ${2:#statements} - done -snippet until - until [[ ${1:condition} ]]; do - ${2:#statements} - done -snippet case - case ${1:word} in - ${2:pattern}) - ${3};; - esac |