From 5d9c055689063dbf022639482ee8f2a65223da7b Mon Sep 17 00:00:00 2001 From: Dane Summers Date: Tue, 1 Mar 2016 11:26:02 -0500 Subject: [PATCH] Adds support for neovim. gui highlighting was broken after neovim revision 79a698 (removed support for gui_running hack to check for truecolor support). --- autoload/indent_guides.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/indent_guides.vim b/autoload/indent_guides.vim index 53d4ff9..3a4b86d 100644 --- a/autoload/indent_guides.vim +++ b/autoload/indent_guides.vim @@ -91,7 +91,7 @@ endfunction " function! indent_guides#highlight_colors() if s:auto_colors - if has('gui_running') + if has('gui_running') || has('nvim') call indent_guides#gui_highlight_colors() else call indent_guides#basic_highlight_colors()