沈阳市委宣传部召开网信系统学习宣传贯彻党的十九大精神工作会议
百度 尽管有些年轻人并非完全离开农村,但他们大多数已经不再从事农业生产,即使还从事农业生产,农业收入已经不占主导。
Questions specific to Vi IMproved written by Bram Moolenar et al. Use this tag for features not found in other Vi-like editors or for comparison of features.
7 questions
5
votes
1
answer
498
views
Parsing winlayout() For Toggling Multiple Windows At Once
When working in vim, I like to have a toggle-able terminal window that I can bring with me from tab to tab. This works by tracking a buffer, and opening it in a new bot split (if it isn't visible), or ...
1
vote
1
answer
392
views
How to remove definition In between lines by coc-nvim
I want to remove the inline definition that come like this (underline parts):
These are coming due to coc-nvim and I don't want to see them.
How can I get rid of them?
35
votes
5
answers
26k
views
Biggest differences between Vim and vi
I tried vi instead of Vim, and I didn't notice much difference. The biggest thing I noticed was how vi didn't say -- INSERT -- when I went into insertion mode (and other minor interface differences).
...
14
votes
2
answers
11k
views
Advice to add `set nocompatible` as first line of .vimrc
I recall (perhaps in the early 2000's) having set nocompatible as the first line of my vimrc and most Vim guides and tutorials recommending that practice.
Some examples I could easily find online:
...
4
votes
1
answer
145
views
Create new Highlight for C pointers
I am trying to highlight only the name of pointer without '->' I tried with syn region but all the pointer and component are highlighted when i use match:
syn match PTR1 /\<[0-9A-Za-z_]\{1,\}[-][...
3
votes
3
answers
2k
views
How can I use different vim setting for different filename?
In most cases, I want to use the same setting. However, when I write the makefile file, I need to use tab instead of space, so I need to execute the :set noexpandtab for all the makefile file. In ...
3
votes
1
answer
2k
views
Why is `vmap` for both Visual *and* Select mode?
Vim has both Visual and Select modes. Select mode is similar to Visual mode in some senses, but different in that when a printable character is typed, Vim will replace the selection with that ...