We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 136c784 commit 318eec7Copy full SHA for 318eec7
1 file changed
autoload/jsonpath.vim
@@ -41,7 +41,7 @@ function! jsonpath#scan_buffer(search_for, ...) "{{{
41
" Parse arguments
42
let search_for = a:search_for
43
if type(search_for) == v:t_string
44
- let search_for = split(search_for, '\.', 1)
+ let search_for = split(search_for, escape(g:jsonpath_delimeter, '.\'), 1)
45
endif
46
let is_searching = !empty(search_for)
47
0 commit comments