cl <TAB>
outputs console.log(': ', );
How do I change the default behavior from using single quotes to double? It would be best if I can set a setting in my .vimrc file.
If not then perhaps it is possible to patch ~/.vim/bundle/vim-snippets/snippets/javascript/javascript.snippets
myself:
235 snippet cl "console.log"
236 console.log(${0});
I could not see any single quotes that I could replace with double. Any idea how this can be fixed?