问题
Using nvim 0.2.0-dev whenever i press enter or single quote strange symbol appears followed by 6q in the end of the line as shown in image below.
nvim error image
回答1:
Better answer IMHO
add to init.vim
set guicursor=
That took care of my prb on 2.0
回答2:
Solved this issue by installing stable version of neovim
First removed unstable version
sudo apt-get remove neovim
then removed repository
sudo add-apt-repository --remove ppa:neovim-ppa/unstable
update repository
sudo add-get update
Now added repository for stable version
sudo add-apt-repository ppa:neovim-ppa/stable
update repository
sudo apt-get update
Installed stable neovim which is at this time 0.1.7
sudo apt-get install neovim
Problem Solved
Added Info Dont know whether its necessary or not i also copied my init.vim file to safe location and deleted my nvim folder from ~/.config and after installing stable neovim created nvim folder inside ~./config and pasted my init.vim file there and installed my vim plugin manager following its guide and opened my nvim and ran my plugin install command everything is working exactly as it was earlier without that error
来源:https://stackoverflow.com/questions/42131715/nvim-strange-character-after-pressing-enter