summaryrefslogtreecommitdiff
path: root/snippets/scheme.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/scheme.snippets
parent823302458ec6c53455a3f34674415c43ce6a3187 (diff)
fixed zathura integration with texlab using nvim-texlabconfig
Diffstat (limited to 'snippets/scheme.snippets')
-rw-r--r--snippets/scheme.snippets36
1 files changed, 0 insertions, 36 deletions
diff --git a/snippets/scheme.snippets b/snippets/scheme.snippets
deleted file mode 100644
index 4c0c78a..0000000
--- a/snippets/scheme.snippets
+++ /dev/null
@@ -1,36 +0,0 @@
-snippet +
- (+ ${1}
- ${0})
-
-snippet -
- (- ${1}
- ${0})
-
-snippet /
- (/ ${1}
- ${0})
-
-snippet *
- (* ${1}
- ${0})
-
-# Definition
-snippet def
- (define (${1:name})
- ${0:definition})
-
-# Definition with lambda
-snippet defl
- (define ${1:name}
- (lambda (x)(${0:definition})))
-
-# Condition
-snippet cond
- (cond ((${1:predicate}) (${2:action}))
- ((${3:predicate}) (${0:action})))
-
-# If statement
-snippet if
- (if (${1:predicate})
- (${2:true-action})
- (${0:false-action}))