You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use this plugin intensively and one thing would be handy for commenting block of codes and that is adding one blank line in comment above and below code selected for commenting. This way i can manipulate easier with a block of comment. It would be ideal to add to config for example following option:
comment_block = {
--- Insert empty line in comment block above, set 0 to disable
above_lines = 1,
--- Insert empty line in comment block below, set 0 to disable
below_lines = 1,
},
So the following code block
if var = true {
do_someting
}
would be commented like this
/*
if var = true {
do_someting
}
*/
I believe that this would be appreciated for many developers.
BR
The text was updated successfully, but these errors were encountered:
I use this plugin intensively and one thing would be handy for commenting block of codes and that is adding one blank line in comment above and below code selected for commenting. This way i can manipulate easier with a block of comment. It would be ideal to add to config for example following option:
So the following code block
would be commented like this
I believe that this would be appreciated for many developers.
BR
The text was updated successfully, but these errors were encountered: