spacemacs/layers/+lang/json/funcs.el
Miciah Dashiel Butler Masters 78297be625 Fix various typos
* Fix various isolated typos

"apppend" -> "append"

"availabe" -> "available"

"Descripti using ternon" -> "Description"

"you have not them" -> "you don't have them"

"new on" -> "new one"

"plained" -> "curved"

"repel" -> "REPL"

"vairable" -> "variable"

* Fix a few errors in the CoffeeScript layer readme

Add a missing "the".

Correct a reference to the layer as "javascript" to "coffeescript".

Fix the syntax on the link to CoffeeLint.

* Fix typos: "dofile" -> "dotfile"

* Fix typos: "formated" and "formating"

"formated" -> "formatted"

"formating" -> "formatting"

* hy: Fix docstrings in funcs.el

Fix copy-and-pasted docstring text for
spacemacs/hy-shell-eval-current-form-and-go and
spacemacs/hy-shell-eval-region-and-go.

* Fix typos: "indendation" -> "indentation"

* Fix typos: "the the", "a a"

Fix duplicated (or misplaced) articles.

* Fix typos: "wether" -> "whether"

* Fix typos: "intialize" -> "initialize"
2018-05-23 22:12:30 -04:00

35 lines
1.3 KiB
EmacsLisp

;;; funcs.el --- JSON Layer functions File for Spacemacs
;;
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
;;
;; Author: Muneeb Shaikh <muneeb@reversehack.in>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defun spacemacs/json-navigator-dwim (arg &optional start end)
"Display the JSON hierarchy of the whole buffer or the active region.
If ARG is a universal prefix argument then display the hierarchy after point."
(interactive "P\nr")
(if arg
(json-navigator-navigate-after-point)
(if (equal start end)
(save-excursion (json-navigator-navigate-region (point-min) (point-max)))
(json-navigator-navigate-region start end))))
(defun spacemacs/json-reformat-dwim (arg &optional start end)
"Reformat the whole buffer of the active region.
If ARG is non-nil (universal prefix argument) then try to decode the strings.
If ARG is a numerical prefix argument then specify the indentation level."
(interactive "P\nr")
(let ((json-reformat:indent-width js-indent-level)
(json-reformat:pretty-string? nil))
(cond
((numberp arg) (setq json-reformat:indent-width arg))
(arg (setq json-reformat:pretty-string? t)))
(if (equal start end)
(save-excursion (json-reformat-region (point-min) (point-max)))
(json-reformat-region start end))))