I am frequent user of JS
and my specific snippets are placed at ~/.vim/after/snippets/javascript/_.snippets
which work fine. Recently i moved to coffeescript but i am not able to define custom snippets of my own. I have tried
.vim/after/snippets/coffee/_.snippets
.vim/after/snippets/coffee/coffee.snippets
I like to use my own snippets but considering vim-snippets Coffee snippets I find that second case should work which is not.
File extention that i am using is
.coffee
and the snippet is as shown below
snippet log
console.log ${0}
Am i doing something wrong ?