Created
November 23, 2010 19:51
-
-
Save slackorama/712405 to your computer and use it in GitHub Desktop.
beautify some js code in emacs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; js-beautify.el -- beautify some js code | |
(defgroup js-beautify nil | |
"Use jsbeautify to beautify some js" | |
:group 'editing) | |
(defcustom js-beautify-args "--jslint-happy --brace-style=end-expand --keep-array-indentation" | |
"Arguments to pass to jsbeautify script" | |
:type '(string) | |
:group 'js-beautify) | |
(defcustom js-beautify-path "~/projects/js-beautify/python/jsbeautifier.py" | |
"Path to jsbeautifier python file" | |
:type '(string) | |
:group 'js-beautify) | |
(defun js-beautify () | |
"Beautify a region of javascript using the code from jsbeautify.org" | |
(interactive) | |
(let ((orig-point (point))) | |
(unless (mark) | |
(mark-defun)) | |
(shell-command-on-region (point) | |
(mark) | |
(concat "python " | |
js-beautify-path | |
" --stdin " | |
js-beautify-args) | |
nil t) | |
(goto-char orig-point))) | |
(provide 'js-beautify) | |
;;; js-beautify.el ends here |
Thanks! I just updated to use the python version.
Shameless plug: http://sethmason.com/2011/04/28/jsbeautify-in-emacs.html
correct link : https://sethmason.com/2011/04/28/beautify-your-javascript-in-emacs.html
@yashasolutions Thanks! Updated my comment.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for putting this out there. I added to this a bit (checked in also):