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
It would be great when commentary could recognize multiple ways of how a comments can be done in a language. This should only work to comment lines out; commenting should use a single commentstring.
As an example see the following comment in C before calling commentary:
// no comment
After using gcc on that line:
nocomment
After using gcc a second time:
/* no comment */
At the moment, using gcc on the first comment ends in:
/* // no comment */
The text was updated successfully, but these errors were encountered:
It would be great when commentary could recognize multiple ways of how a comments can be done in a language. This should only work to comment lines out; commenting should use a single
commentstring
.As an example see the following comment in C before calling commentary:
// no comment
After using
gcc
on that line:After using
gcc
a second time:/* no comment */
At the moment, using
gcc
on the first comment ends in:/* // no comment */
The text was updated successfully, but these errors were encountered: