Nvim : Strange character after pressing enter

陌路散爱 提交于 2019-12-25 18:57:38

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!