When I enter two dollar signs $$ in insert mode in VIM, it changes the text to $$ <++>. What does it mean? And how can I do this anymore?
This is the place inserted by the latex package plugin. You can go to it with <Cj> ( Ctrl + J ).
<Cj>
see the "Place Holders" section here: http://vim-latex.sourceforge.net/documentation/latex-suite/latex-macros.html
Sounds like a latex-suite plugin (or something similar). Use :scriptnames to see which plugins have been loaded.
:scriptnames
It can be an abbreviation or a map. Check out
:ia
or
:imap
with a result like:
i $$ $$<++>
If it is found, delete it with:
:inuabbrev $$
:iunmap $$
Usually a hunt for unknown / unwanted mappings:
:verbose map $$
:verbose abbr $$
Not only will he tell you which mappings / abbreviations exist, but also where .
Source: https://habr.com/ru/post/1387179/More articles:jQuery: if someKey is pressed - jqueryDo I need request headers with AJAX? - javascriptcannot query SQL Server system tables through db link created using DG4MSQL - oraclestartMonitoringForRegion in iPhone Simulator - iosFiremonkey and Livebindings database performance - databaseAndroid ICS SurfaceHolder.lockCanvas () failed internally and returns null - androidApply one validation rule for multiple fields - phpPerformance issues with RavenDB - databaseCall system () from a multithreaded program - cAvailability of coverage reports for the blind - javaAll Articles