Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

two dollar signs in insert mode in VIM

Tags:

vim

When I type two dollar signs $$ in insert mode in VIM it changes the text to $$<++>. What does this mean? And how do I make it no longer do this?

like image 814
mnr Avatar asked Feb 22 '23 02:02

mnr


2 Answers

This is a place holder inserted by the latex-suite plugin. You can jump to it with <C-j> (Ctrl+J).

see "Place Holders" section here: http://vim-latex.sourceforge.net/documentation/latex-suite/latex-macros.html

like image 52
Niels Avatar answered Feb 24 '23 15:02

Niels


Sounds like the latex-suite plugin (or something similar). Use :scriptnames to see which plugins have been loaded.

like image 23
1983 Avatar answered Feb 24 '23 16:02

1983