Skip to content

Commit 09b2857

Browse files
authored
Merge pull request #7 from tenfyzhong/fix_call
Fix function call error.
2 parents 25777f2 + b5b4e2a commit 09b2857

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)