-1

每当我按回车键时使用 nvim 0.2.0-dev 或出现单引号奇怪符号后跟 6q 在行尾,如下图所示。

nvim 错误图像

4

2 回答 2

2

更好的答案恕我直言

添加到 init.vim set guicursor= 这照顾了我在 2.0 上的 prb

于 2018-06-23T15:25:01.850 回答
1

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

于 2017-02-09T14:59:05.380 回答