Skip to content

Commit b2614a7

Browse files
author
skywind3000
committed
fixed: escaping
1 parent 5e93668 commit b2614a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autoload/quickui/tools.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
" tools.vim -
44
"
55
" Created by skywind on 2019/12/23
6-
" Last Modified: 2021/11/30 01:35
6+
" Last Modified: 2021/11/30 01:37
77
"
88
"======================================================================
99

@@ -498,7 +498,7 @@ function! quickui#tools#input_search()
498498
echo "quit search"
499499
return
500500
endif
501-
let text = escape(text, '[\*~^')
501+
let text = escape(text, '[\/*~^')
502502
" exec '/' . text
503503
call feedkeys("\<ESC>/" . text . "\<cr>", 'n')
504504
endfunc

0 commit comments

Comments
 (0)