diff options
| author | Takahiro Yoshihara | 2021-01-27 01:52:24 +0900 |
|---|---|---|
| committer | Takahiro Yoshihara | 2021-01-27 01:52:24 +0900 |
| commit | d220b9cf1bbcba4c3525532ec15c7e3dcf80eafd (patch) | |
| tree | 3b289ccdf74cd4bd6fc293be0a6f2902ee7cb79f | |
| parent | 971c4d41880b72dbbf1620b3ad91418a6a6f6b9c (diff) | |
| download | ctrlp.vim-fix-138.tar.gz | |
wip: Fix #138
fix-138| -rw-r--r-- | autoload/ctrlp/utils.vim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/autoload/ctrlp/utils.vim b/autoload/ctrlp/utils.vim index cfc9e6c..3d78747 100644 --- a/autoload/ctrlp/utils.vim +++ b/autoload/ctrlp/utils.vim @@ -90,8 +90,7 @@ if exists('*fnameescape') endf el fu! ctrlp#utils#fnesc(path, type, ...) - let path = fnameescape(a:path) - retu a:0 ? escape(path, a:1) : path + retu a:0 ? escape(a:path, a:1) : a:path endf en el |