diff options
| author | Hasu | 2022-08-02 18:29:26 +0900 |
|---|---|---|
| committer | Hasu | 2022-08-02 18:29:26 +0900 |
| commit | 900f086774f9eb1131165ba570fea87067bc11b8 (patch) | |
| tree | 0ddbab4a3e90748011564a7aa8181fd5414c8fcd | |
| parent | 87d4a9dd5996ebdde1b1f1b07235f2879d30ee32 (diff) | |
| download | ctrlp.vim-900f086774f9eb1131165ba570fea87067bc11b8.tar.gz | |
fix: fix for comments
| -rw-r--r-- | autoload/ctrlp.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autoload/ctrlp.vim b/autoload/ctrlp.vim index 2097206..51047e0 100644 --- a/autoload/ctrlp.vim +++ b/autoload/ctrlp.vim @@ -330,7 +330,7 @@ fu! s:Open() endf fu! s:Close() - if &cmdheight != 0 | set cmdheight=0 |en + if &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 &cmdheight == 0 | set cmdheight=1 | en + if &cmdheight == 0 | set cmdheight=1 | en cal s:BuildPrompt(1) if s:keyloop | cal s:KeyLoop() | en retu 1 |