Skip to content

Commit

Permalink
fix: Remove unnecessary == v:true check
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoomen committed Sep 10, 2019
1 parent bf8296c commit 866abd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/doge.vim
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if !has('nvim') && (v:version < 700 || !has('patch-7.4.2119'))
finish
endif

if has('nvim') && !has('nvim-0.2.0') == v:true
if has('nvim') && !has('nvim-0.2.0')
echohl WarningMsg
echo printf(s:unsupported_msg, 'NeoVim v0.2.0+')
echohl None
Expand Down

0 comments on commit 866abd4

Please sign in to comment.