From 18fb04bb4db4b58f5b099ff99403d00c76d725ca Mon Sep 17 00:00:00 2001 From: wsdjeg Date: Sun, 8 Oct 2017 19:58:51 +0800 Subject: [PATCH] Use v:false if possible close #884 --- config/plugins/denite.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/plugins/denite.vim b/config/plugins/denite.vim index c9dea725f..24cf0acab 100644 --- a/config/plugins/denite.vim +++ b/config/plugins/denite.vim @@ -12,7 +12,7 @@ let s:denite_options = { \ 'highlight_matched_char' : 'MoreMsg', \ 'highlight_matched_range' : 'MoreMsg', \ 'direction': 'rightbelow', - \ 'statusline' : 0, + \ 'statusline' : has('patch-7.4.1154') ? v:false : 0, \ 'prompt' : '➭', \ }}