Open
Description
now i can chang the default comment string like /** */
by the following rc file
Plugin 'scrooloose/nerdcommenter'
let g:NERDSpaceDelims=1
let g:NERDCustomDelimiters={ 'php' : { 'leftAlt': '/**','rightAlt': '*/', 'left' : '//'} }
when i press the <leader>cs
i get the string like this:
/**
*
*/
but this not what i want , i want to get the comment string like this:
/**
*
*/
any idea ?