vim-commentary
vim-commentary copied to clipboard
commentary.vim: comment stuff out
Implements the `gy` key binding from [evil-commentary](https://github.com/linktohack/evil-commentary). Closes #125. See also #42.
I want to have the same experience of VSCode and some other code editors and IDEs, some examples are coming. As no plugin now solves this problem It seems difficult...
A common operation is for a section of text to be duplicated and commented out, so that it can be edited/refactored/reworked, while the original is still available for reference until...
The vim-commentary documentation states three keyboard mapping examples to comment out whole _lines_ of code, but I'm curious there is any plan to extending this plugin to support portions of...
`gcc` etc. use HTML `
For example, `gcw` should comment only the next word. Also, if less than line is selected in visual mode, `gc` should comment out only the selection. For example, consider this...
Hi! Would it be possible to escape existing comments in html/xml differently than it is implemented now? The problem is that the generated xml code is invalid if comments already...
First, thank you for this plugin, it made my life so much easier ❤️ I have an issue though: I like "real" comments (ie. text describing what the code does)...