jsonian icon indicating copy to clipboard operation
jsonian copied to clipboard

Results 6 jsonian issues
Sort by recently updated
recently updated
newest added

When opening long single line JSON file, ask the user if they want to pretty print the buffer. This makes opening and editing the file faster since, as you know,...

The fontification logic is changed from a syntax table based to a text based implementation. Benchmarks: `bench-jsonian` on the `main` branch: 8.572s `bench-jsonian` on the new branch: 4.204s `bench-prog`: 5.794s...

Need to confirm that this works with `;;;###autoload` before merging.

By default Emacs just uses `javascript-mode` for `.json` files, and the `json-mode` you've referenced is not part of Emacs, so I don't think Emacs has a great out-of-the-box experience for...

This small snippet will teach Org-mode about jsonian: ``` emacs-lisp (add-to-list 'org-src-lang-modes '("json" . jsonian)) ``` For anyone using Doom, this configuration is working well for me: ``` emacs-lisp (use-package!...

Emacs 30's built-in [EditorConfig support](https://www.gnu.org/software/emacs/manual/html_node/emacs/EditorConfig-support.html) has [`jsonian-default-indentation`](https://github.com/emacs-mirror/emacs/blob/emacs-30.1/lisp/editorconfig.el#L197) as a variable for [indent_size](https://editorconfig.org/#supported-properties), so making it a [safe variable](https://www.gnu.org/software/emacs/manual/html_node/emacs/Safe-File-Variables.html) would be very useful.