From 93bc83a52330ccd51e5443830d6ba1951a16e5dc Mon Sep 17 00:00:00 2001 From: tamago324 Date: Mon, 3 Feb 2020 17:13:03 +0900 Subject: [PATCH] Fix error --- autoload/blamer.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/blamer.vim b/autoload/blamer.vim index 9e0f12a..0dffbdd 100644 --- a/autoload/blamer.vim +++ b/autoload/blamer.vim @@ -145,7 +145,7 @@ function! blamer#CreatePopup(buffer_number, line_number, message) abort endfunctio function! blamer#Show() abort - if g:blamer_enabled == 0 || s:is_not_work + if g:blamer_enabled == 0 || s:missing_popup_feature return endif @@ -216,7 +216,7 @@ function! blamer#Init() abort return endif - if s:is_not_work + if s:missing_popup_feature echohl ErrorMsg echomsg '[blamer.nvim] Needs popup feature.' echohl None