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
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 and is quite helpful to change the command being written
For eg., if ^ points to the current cursor location
\emph{This is an important line}
^
cic in normal mode shall put the cursor in the correct location & switching to insert mode
\{This is an important line}
^
which is super helpful , eg. to make the text bold.
\textbf{This is an important line}
This conflicts with the inline comment mapping of tcomment.
Can you please provide some documentation to
disable
remap
tcomments inline mapping functionality?
The text was updated successfully, but these errors were encountered:
I think this is referring to the 'ic' mapping (g:tcomment_textobject_inlinecomment and TComment_ic).
You can disable it by adding:
let g:tcomment_textobject_inlinecomment = ''
to your .vimrc. I also think it's broken: the string concatenation will generate e.g. exec 'omapic <Plug>TComment_ic' rather than exec 'omap ic <Plug>TComment_ic'. You can fix that for now with:
let let g:tcomment_textobject_inlinecomment = ' ic'
This addresses tomtom#255 and
tomtom#188. It also partially
addresses tomtom#237 (by making
it clear that the functionality exists, even if it doesn't quite do
what's being asked for there).
Thank you for the excellent plugin. Here's a small issue/request.
For writing latex documents, I am using the
vimtex
plugin. The mappingcic
of vimtex stands forchange in command
and is quite helpful to change the command being writtenFor eg., if
^
points to the current cursor locationcic
in normal mode shall put the cursor in the correct location & switching to insert modewhich is super helpful , eg. to make the text
bold
.This conflicts with the
inline comment
mapping oftcomment
.Can you please provide some documentation to
tcomments
inline mapping functionality?The text was updated successfully, but these errors were encountered: