tcomment_vim icon indicating copy to clipboard operation
tcomment_vim copied to clipboard

An extensible & universal comment vim-plugin that also handles embedded filetypes

Results 41 tcomment_vim issues
Sort by recently updated
recently updated
newest added

Comments using the default `ft` in `.tsx` files doesn't work, it still adds `// `. The only way I got it working was setting the `ft` to `javascript.jsx`, then comments...

Hello, An example that I have ``` void func( T1 t1, T2 t2, T3 t3); ``` where that if I want to comment out the `t2`, because it's not used...

Doc comments don't seem to work in a typescript react file. In a `.ts` file: ``` /** * ``` In a `.tsx` file: ``` /** ``` Is this a problem...

This is an example of how these lines are commented when the language is TypeScript: ```vue import { dispatch, get } from 'vuex-pathify' import Vue from '../config' // const value:...

a line like this in a file x.cpp: `我们` then type in normal mode: `V` the result will be: `我// 们` ![image](https://user-images.githubusercontent.com/1105212/77565227-e15df080-6efe-11ea-8081-3055e6f9c196.png) but, if we use the cmd `:'

Currently the mapping for the `ic` (inline comment) mapping has no space in between the `omap` and `g:tcomment_textobject_inlinecomment` parts meaning that the whole expression would look like: `exec 'omapic TComment_ic'`...

Thank you for the excellent plugin. Here's a small issue/request. For writing latex documents, I am using the `vimtex` plugin. The mapping `cic` of vimtex stands for `change in command`...

Hi @tomtom This issue is actually a question. It might not be good to ask question here, but I really can't find a better way to contact you. I will...

Sometimes **tcomment** doesn't know how to handle some syntax names, for instance, 'foldBraces' syntax group in typescript in *.vue files ([leafgarland/typescript-vim](https://github.com/leafgarland/typescript-vim)). It comments it as html (<!-- -->) rather than...

This PR closes #233 and #234. #233 is important in some complex comment definitions with recursive marker substitutions.