Skip to content

Commit b5b4e2a

Browse files
committed
fix function call error.
1 parent 25777f2 commit b5b4e2a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

autoload/jsonpath.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,9 @@ endfunction "}}}
216216
" Entry point for the :JsonPath command
217217
function! jsonpath#command(input) "{{{
218218
if empty(a:input)
219-
jsonpath#echo()
219+
call jsonpath#echo()
220220
else
221-
jsonpath#goto(a:input)
221+
call jsonpath#goto(a:input)
222222
endif
223223
endfunction "}}}
224224

0 commit comments

Comments
 (0)