summaryrefslogtreecommitdiff
path: root/snippets/falcon.snippets
diff options
context:
space:
mode:
authorVito G. Graffagnino <vito@graffagnino.xyz>2022-08-30 16:06:22 +0100
committerVito G. Graffagnino <vito@graffagnino.xyz>2022-08-30 16:06:22 +0100
commitf1eabbaa1b4ff1836d0ee8335b31d009203f3775 (patch)
treebbe77eacaef8ab8a5999e517c3006973c9e3e44c /snippets/falcon.snippets
parent823302458ec6c53455a3f34674415c43ce6a3187 (diff)
fixed zathura integration with texlab using nvim-texlabconfig
Diffstat (limited to 'snippets/falcon.snippets')
-rw-r--r--snippets/falcon.snippets71
1 files changed, 0 insertions, 71 deletions
diff --git a/snippets/falcon.snippets b/snippets/falcon.snippets
deleted file mode 100644
index c523980..0000000
--- a/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