From e805ce887f5783b7cb8238c94436bec505d0f214 Mon Sep 17 00:00:00 2001 From: wendi Date: Tue, 21 Jun 2016 22:58:53 +0800 Subject: [PATCH] vimrc: Fix c-h issue* https://github.com/neovim/neovim/issues/2048#issuecomment-162072750 --- vimrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vimrc b/vimrc index dbda88a..bc46a61 100644 --- a/vimrc +++ b/vimrc @@ -152,7 +152,9 @@ autocmd FileType c setlocal tabstop=8 shiftwidth=4 softtabstop=4 " nvim if has('nvim') - nmap h + " nmap h + " Fix c-h issue by https://github.com/neovim/neovim/issues/2048#issuecomment-162072750 + set mouse-=a " Disable mouse let $NVIM_TUI_ENABLE_CURSOR_SHAPE=1 "" " Switch cursor shape when using NeoVim endif