From 9931e0888b2419326ae10ebbfae532261c5c125f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 30 Jun 2016 16:11:56 +0200 Subject: Fix submodules --- vim/bundle/vim-snippets | 1 + vim/bundle/vim-snippets/snippets/falcon.snippets | 71 ------------------------ 2 files changed, 1 insertion(+), 71 deletions(-) create mode 160000 vim/bundle/vim-snippets delete mode 100644 vim/bundle/vim-snippets/snippets/falcon.snippets (limited to 'vim/bundle/vim-snippets/snippets/falcon.snippets') diff --git a/vim/bundle/vim-snippets b/vim/bundle/vim-snippets new file mode 160000 index 0000000..15d7e5e --- /dev/null +++ b/vim/bundle/vim-snippets @@ -0,0 +1 @@ +Subproject commit 15d7e5ec26ec93adee4051b6359be90a943aa38d diff --git a/vim/bundle/vim-snippets/snippets/falcon.snippets b/vim/bundle/vim-snippets/snippets/falcon.snippets deleted file mode 100644 index c523980..0000000 --- a/vim/bundle/vim-snippets/snippets/falcon.snippets +++ /dev/null @@ -1,71 +0,0 @@ -snippet #! - #!/usr/bin/env falcon - -# Import -snippet imp - import ${0:module} - -# Function -snippet fun - function ${2:function_name}(${3}) - ${0} - end - -# Class -snippet class - class ${1:class_name}(${2:class_params}) - ${0:/* members/methods */} - end - -# If -snippet if - if ${1:condition} - ${0} - end - -# If else -snippet ife - if ${1:condition} - ${0} - else - ${1} - end - -# If else if -snippet eif - elif ${1:condition} - ${0} - -# Switch case -snippet switch - switch ${1:expression} - case ${2:item} - case ${0:item} - default - end - -# Select -snippet select - select ${1:variable} - case ${2:TypeSpec} - case ${0:TypeSpec} - default - end - -# For/in Loop -snippet forin - for ${1:element} in ${2:container} - ${0} - end - -# For/to Loop -snippet forto - for ${1:lowerbound} to ${2:upperbound} - ${0} - end - -# While Loop -snippet wh - while ${1:conidition} - ${0} - end -- cgit v1.2.3