Function: js-jsx-indent-line
js-jsx-indent-line is an interactive and byte-compiled function
defined in js.el.gz.
Signature
(js-jsx-indent-line)
Documentation
Indent the current line as JavaScript+JSX.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
(defun js-jsx-indent-line ()
"Indent the current line as JavaScript+JSX."
(interactive)
(let ((js-jsx-syntax t)) (js-indent-line)))