From ee5a69f934fa38344f80ea8a3eecbde802d2667b Mon Sep 17 00:00:00 2001 From: Seong Yong-ju Date: Tue, 7 Nov 2017 19:02:17 +0900 Subject: [PATCH] Fixed cursor mode-sensitive issue Fixed an issue that cursor shape won't change by mode even if `g:spacevim_terminal_cursor_shape` is 1. --- config/neovim.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/neovim.vim b/config/neovim.vim index 302587ffe..ef5fcc471 100644 --- a/config/neovim.vim +++ b/config/neovim.vim @@ -28,7 +28,7 @@ else set guicursor= elseif g:spacevim_terminal_cursor_shape == 1 " enable non-blinking mode-sensitive cursor - set guicursor=a:block-blinkon0 + set guicursor=n-v-c:block-blinkon0,i-ci-ve:ver25-blinkon0,r-cr:hor20,o:hor50 elseif g:spacevim_terminal_cursor_shape == 2 " enable blinking mode-sensitive cursor set guicursor=n-v-c:block-blinkon10,i-ci-ve:ver25-blinkon10,r-cr:hor20,o:hor50