summaryrefslogtreecommitdiff
path: root/snippets/ocaml.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/ocaml.snippets
parent823302458ec6c53455a3f34674415c43ce6a3187 (diff)
fixed zathura integration with texlab using nvim-texlabconfig
Diffstat (limited to 'snippets/ocaml.snippets')
-rw-r--r--snippets/ocaml.snippets39
1 files changed, 0 insertions, 39 deletions
diff --git a/snippets/ocaml.snippets b/snippets/ocaml.snippets
deleted file mode 100644
index aec43be..0000000
--- a/snippets/ocaml.snippets
+++ /dev/null
@@ -1,39 +0,0 @@
-snippet doc
- (** ${0} *)
-snippet comment
- (* ${0} *)
-snippet let
- let ${1} = ${2} in
- ${0}
-snippet fn
- let ${1} =
- ${0}
-snippet fun
- type ${1} = ${0}
-snippet mod
- module ${1} = struct
- ${0}
- end
-snippet modty
- module type ${1} = sig
- ${0}
- end
-snippet sw
- match ${1} with
- | ${2} -> ${0}
-snippet |
- | ${1} -> ${0}
-snippet p
- |> ${0}
-snippet if
- if ${1} then
- ${2}
- else
- ${0}
-snippet fnr
- let rec ${1} =
- ${0}
-snippet try
- try
- ${1}
- with ${0}