tcomment_vim
                                
                                
                                
                                    tcomment_vim copied to clipboard
                            
                            
                            
                        An extensible & universal comment vim-plugin that also handles embedded filetypes
The sample lua script is like following: ``` lua #!/usr/bin/lua local a; local b; local b; local b; ``` when I use `gc` to comment the variables line by line,...
One of the new features in vim is `gn` I was wondering if there is a way to force tcomment to use a line comment on the next motion. Maybe...
I installed the plugin using vundle, however the default key mappings do not do anything, nor do they appear in the list generated by the :map command.
This is a follow up to issue #144, which continues after 1a9e65e. Given the following PHP file ``` php
I've seen that there are some spec files, and it appears to be based on your [spec_vim](https://github.com/tomtom/spec_vim) plugin. Do you plan to keep using it? Otherwise I would have recommended...
Given the following example in e.g. Java: ``` java int foo = 42; ``` I can comment foo with `gciw` (or equivalent): ``` java int /* foo */ = 42;...
It would be useful if there were functionality for commenting on the line above a text object. I would use this for paragraphs, methods, etc.
I maped tcomment like below ```lua vim.keymap.set('n', "c", 'TComment_gcc') vim.keymap.set('v', "c", 'TComment_gc') ``` The second line works great, but the first one throws the error `E354: Invalid register name: '$'`
In both JetBrains IDEs and VS Code, if we do a block comment, we get a combination of TCommentBlock or TCommentInline. If multiple lines are selected, we end up with...
Mapping `TComment` doesn't work with ranges, but `:TComment` does