Vim Nerdcommenter custom delimiters does not work -


i attempting follow advice here:

vim nerdcommenter: adding new filetype in vimrc

and here:

macvim nerdcommenter, how specify alternative delimiters

when declare own customdelimiters in .vimrc file, nerdcommenter not appear recognize them.

i have put lines

let g:nerdcustomdelimiters = {     \ 'blahblah': { 'left': '#'} \ } 

into .vimrc, whenever open file called a.blahblah, still default /*...*/ commenting behavior. if attempt use <leader>ca, told

"nerdcommenter:cannot use alternative delimiters, none specified"

i have moved above lines head , tail of .vimrc file, same behavior.

thank help.

when set g:nerdcustomdelimiters, ask nerd-commenter plugin change delimiters specific file types.

unless added this, blahblah not known file type, when edit a.blahblah, no file type defined, , nerd-commenter delimiters default ones.

after opening file, can manually change current file type doing:

set ft=blahblah 

then example should work.


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -