mirror of
https://github.com/amix/vimrc
synced 2025-06-16 01:25:00 +08:00
Added not added new plugin files
This commit is contained in:
38
sources_non_forked/vim-snippets/snippets/reason.snippets
Normal file
38
sources_non_forked/vim-snippets/snippets/reason.snippets
Normal file
@ -0,0 +1,38 @@
|
||||
snippet doc
|
||||
/*
|
||||
${0}
|
||||
*/
|
||||
snippet let
|
||||
let ${1} = ${0};
|
||||
snippet fn
|
||||
let ${1} => {
|
||||
${0}
|
||||
};
|
||||
snippet fn0
|
||||
let ${1} () => {
|
||||
${0}
|
||||
};
|
||||
snippet fun
|
||||
fun ${1} => ${0}
|
||||
snippet ty
|
||||
type ${1} = ${1};
|
||||
snippet mod
|
||||
module ${1} = {
|
||||
${0}
|
||||
};
|
||||
snippet modty
|
||||
module type ${1} = {
|
||||
${0}
|
||||
};
|
||||
snippet sw
|
||||
switch ${1} {
|
||||
| ${2} => ${0}
|
||||
}
|
||||
snippet |
|
||||
| ${1} => ${0}
|
||||
snippet if
|
||||
if (${1}) {
|
||||
${2}
|
||||
} else {
|
||||
${0}
|
||||
}
|
Reference in New Issue
Block a user