义乌五金电器博览会20日开幕 打造五金行业的义博会
百度 其中,租金收入约亿元,同比增长11%。
Questions regarding Neovim, a refactored fork of Vim. Should be used with other tags to narrow down the question.
115 questions
3
votes
1
answer
3k
views
Neovim 0.10 syntax highlight is completely broken
Yesterday I updated NeoVim to 0.10 and this is how, e.g., JavaScript code looks like:
Although it used to look this way (now it's a screenshot from Vim):
I've found this question on SO: http://...
27
votes
5
answers
15k
views
How can I use --servername and --remote in neovim?
in vim I can do vim --servername foo and vim --servername foo --remote-silent bar.txt to open files in one instance of vim from several terminal windows (via tmux or whatever). How is the same thing ...
203
votes
6
answers
108k
views
What is Neovim, and how is it different from Vim?
I've been hearing about Neovim; how does it differ from Vim? All the points on the homepage are just architectural changes 'under the hood'. As a user, what's the difference for me?
15
votes
2
answers
35k
views
How to run terminal command in interactive mode from NeoVim?
I have a terminal command which runs code with a breakpoint in it. When I run this command in NeoVim the code execution does not stop at the breakpoint, instead I get an error, that its not a TTY ...
6
votes
2
answers
2k
views
NeoVim - Go into insert mode when clicking in a terminal in a pane?
I'm trying to use NeoVim as a tmux replacement, and have found that no matter what I do, I can't get it to go into insert mode when I click in a pane that has a terminal in it.
Here's the config I'm ...
4
votes
1
answer
2k
views
How to change indenting for html files?
I code mainly in 2 languages python and HTML. I currently have the indenting configured for python in my neovim configuration file but I would to know how to make neovim auto-detect the type of file ...
1
vote
1
answer
111
views
How to display multiple changed files on disk in Vim?
Related to this thread, How can Vim tell me which buffer is changed on disk among multiple buffers?
This Vim configuration automatically checks for changes in opened buffers and notifies when a single ...
162
votes
13
answers
176k
views
Exit from Terminal mode in Neovim/Vim 8
I can't figure out how to go back to Normal mode after entering Terminal in Insert mode...
Escape just doesn't seem to work.
Any idea?
13
votes
1
answer
3k
views
Is there any way to distinguish between neovim and regular vim?
I was trying to migrate to neovim from vim. But in the end, there's some plugins which require python3 support and neovim package doesn't build with python3 by default( I'm on ubuntu, install neovim ...
13
votes
5
answers
3k
views
Abandon Vim and adopt Neovim - hard reasons for not doing so?
With my pending adoption of Ubuntu MATE 22.04, I am looking primarily at neovim, with possible adaptation as spacevim/lunarvim. I am very comfortable with Vim, but am looking for a proper ide layer ...
9
votes
2
answers
14k
views
Neovim setup on MS Windows
I'm trying to switch from Gvim to Neovim. Most tutorials are about Linux and not how to setup Neovim on MS Windows?
Two problems:
vimrc
From the document it's %userprofile%\AppData\Local\nvim\init....
29
votes
5
answers
16k
views
How to enter insert mode when entering Neovim terminal pane?
I have the following mappings to make it easy to move out of a terminal pane in Neovim:
tnoremap <C-h> <C-\><C-n><C-w>h
" Workaround since <C-h> isn't working in ...
11
votes
2
answers
16k
views
How to disable autoformating on save on LazyVim?
On LazyVim when I save a cpp file it is automatically formatted.
It is possible to disable/enable it in the session using Spaceuf
But I would like to disable that autoformatting on save functionality ...
8
votes
2
answers
4k
views
NeoVim: default colors don't match vim's
I'm running NeoVim "straight out of the box"; after running the following commands:
mkdir -p ${XDG_CONFIG_HOME:=$HOME/.config}
ln -s ~/.vim $XDG_CONFIG_HOME/nvim
ln -s ~/.vimrc $XDG_CONFIG_HOME/nvim/...
8
votes
3
answers
18k
views
Neovim with split integrated terminal / REPL
Other editors and IDEs, such as VSCode and RStudio, have an integrated console/terminal/REPL with the following characteristics:
They open in a split window. The file we’re working on is visible at ...