Merge pull request #4044 from galagora/develop

Add `json-mode` keybindings under the local leader
This commit is contained in:
Henrik Lissner 2020-10-06 14:04:14 -04:00 committed by GitHub
commit 2f57386aa0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,13 @@
(map! :after json-mode
:map json-mode-map
:localleader
"p" #'jsons-print-path))
:desc "Copy path" "p" #'json-mode-show-path
"t" #'json-toggle-boolean
"d" #'json-mode-kill-path
"x" #'json-nullify-sexp
"+" #'json-increment-number-at-point
"-" #'json-decrement-number-at-point
"f" #'json-mode-beautify))