Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion autoload/pymatcher.vim
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
" Python Matcher

if !has('python') && !has('python3')
if !has('python3') && !has('python')
echo 'In order to use pymatcher plugin, you need +python or +python3 compiled vim'
endif

Expand Down
4 changes: 2 additions & 2 deletions doc/pymatcher.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ INSTALL *pymatcher-install*
To enable |pymatcher| insert the following in your .vimrc:
>
" PyMatcher for CtrlP
if !has('python')
echo 'In order to use pymatcher plugin, you need +python compiled vim'
if !has('python3') && !has('python')
echo 'In order to use pymatcher plugin, you need +python or +python3 compiled vim'
else
let g:ctrlp_match_func = { 'match': 'pymatcher#PyMatch' }
endif
Expand Down