aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorYasuhiro Matsumoto2022-08-03 09:09:05 +0900
committerYasuhiro Matsumoto2022-08-03 09:09:05 +0900
commitcc4aef3e45f081e02d80120bfe4812f2aa0c052c (patch)
treebf8bd5316371e98835eb4cc4b6d509823b7d5c66
parent5a7fba9997b9bfbc91db9b9aab8cdd9cf0aadd40 (diff)
downloadctrlp.vim-cc4aef3e45f081e02d80120bfe4812f2aa0c052c.tar.gz

fix version number string for checking

-rw-r--r--autoload/ctrlp.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/autoload/ctrlp.vim b/autoload/ctrlp.vim
index 4c7f97b..c582c6a 100644
--- a/autoload/ctrlp.vim
+++ b/autoload/ctrlp.vim
@@ -330,7 +330,7 @@ fu! s:Open()
endf
fu! s:Close()
- if has('patch-9.0-0015') && &cmdheight != 0 | set cmdheight=0 |en
+ if has('patch-9.0.0115') && &cmdheight != 0 | set cmdheight=0 |en
cal s:async_glob_abort(0)
cal s:buffunc(0)
if winnr('$') == 1
@@ -2847,7 +2847,7 @@ fu! ctrlp#init(type, ...)
retu 0
en
- if has('patch-9.0-0015') && &cmdheight == 0 | set cmdheight=1 | en
+ if has('patch-9.0.0115') && &cmdheight == 0 | set cmdheight=1 | en
cal s:BuildPrompt(1)
if s:keyloop | cal s:KeyLoop() | en
retu 1