The ultimate Vim configuration: vimrc
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

36 lines
394 B

snippet doc
/*
${0}
*/
snippet let
let ${1} = ${0};
snippet fn
let ${1} = (${2}) => {
${0}
};
snippet fun
fun ${1} => ${0}
snippet ty
type ${1} = ${0};
snippet mod
module ${1} = {
${0}
};
snippet modty
module type ${1} = {
${0}
};
snippet sw
switch (${1}) {
| ${2} => ${0}
}
snippet |
| ${1} => ${0}
snippet p
|> ${0}
snippet if
if (${1}) {
${2}
} else {
${0}
}