#json-snatcher.el
Say you're looking through a large JSON file, and see a value that you want to extract programmatically. This Emacs extension will allow you to snatch the path to this value.
Available on MELPA at http://melpa.milkbox.net/#/json-snatcher .
First include the package
Then add the following lines to your .emacs file, which sets a hotkey when editing JSON files in either js or js2 mode
(defun js-mode-bindings () "Sets a hotkey for using the json-snatcher plugin" (when (string-match "\\.json$" (buffer-name)) (local-set-key (kbd "C-c C-g") 'jsons-print-path))) (add-hook 'js-mode-hook 'js-mode-bindings) (add-hook 'js2-mode-hook 'js-mode-bindings)
Here's an example of the plugin at work
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4