hluk/FakeVim

Parse command `noremap <Space>yy "+yy` error

Opened this issue · 0 comments

I hava a vimrc config file for Fakevim plugin, there is a map command in that file:

noremap <Space>yy "+yy

The source code lines below will delete the command contents : "+yy

// remove comment
int i = nextline.lastIndexOf('"');
if (i != -1)
nextline = nextline.remove(i, nextline.size() - i);