Santosh
Santosh

Reputation: 31

Nvim : Strange character after pressing enter

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

Upvotes: 0

Views: 1141

Answers (2)

user6273920
user6273920

Reputation: 773

Better answer IMHO

add to init.vim

set guicursor=

That took care of my problem on nvim 0.2, see also the nvim wiki on cursor shape here.

Upvotes: 3

Santosh
Santosh

Reputation: 31

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

Upvotes: 1

Related Questions