I'm using caw.vim, but when I comment out with Ctrl+k,
/*hoge*/
/*fuga*/
You will end up commenting out on each line, as shown in .
/*hoge
fuga*/
and so on
/*
hoge
fuga
*/
I'm wondering if it will be like this, but I wonder if there is such a command.
Another plug-in is fine.
I look forward to your kind cooperation.
vim
When I read README on https://github.com/tyru/caw.vim, it seems that the following box comments are also supported.(Default key map is gcw
or gcb
)
Type "gcw" (uncomment: "gcuw")
before:
" wrap!"
after:
" /*wrap!*/"
Type "gcb"
before:
" box!"
after:
" /********/"
" /*box!*/"
" /********/"
© 2024 OneMinuteCode. All rights reserved.