dotfiles/neovim/.config/nvim/UltiSnips/javascript_perso.snippets
Diogo Cordeiro c6cc2d3f9d first commit
2021-02-18 17:53:07 +00:00

12 lines
209 B
Plaintext

snippet faf "Fat arrow function (faf)" w
${1:function_name} = (${2:argument}) => {
${VISUAL}$0
}
endsnippet
snippet afaf "Anonymous fat arrow function (faf)" w
(${1:argument}) => {
${VISUAL}$0
}
endsnippet