mirror of
https://github.com/danbee/dotfiles-local
synced 2025-03-04 08:49:07 +00:00
7 lines
296 B
VimL
7 lines
296 B
VimL
" Copy path to a named register (* in this case) when calling :JsonPath
|
|
let g:jsonpath_register = '*'
|
|
|
|
" Define mappings for json buffers
|
|
au FileType json noremap <buffer> <silent> <leader>d :call jsonpath#echo()<CR>
|
|
au FileType json noremap <buffer> <silent> <leader>g :call jsonpath#goto()<CR>
|