diff options
author | Alan Pearce | 2017-06-19 10:25:31 +0200 |
---|---|---|
committer | Alan Pearce | 2017-06-19 10:25:31 +0200 |
commit | 405ba466460f9d987d331e64fe28eaba481b9c62 (patch) | |
tree | c71c84303633aa8be6bbe649d200909984f5c980 /emacs | |
parent | 6a3adcad704b8a3c06fc397b5a32a3247dfb36f4 (diff) | |
download | dotfiles-405ba466460f9d987d331e64fe28eaba481b9c62.tar.lz dotfiles-405ba466460f9d987d331e64fe28eaba481b9c62.tar.zst dotfiles-405ba466460f9d987d331e64fe28eaba481b9c62.zip |
Emacs: Install rjsx-mode for React component files
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/init.org | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 5c44022..1570206 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -2099,8 +2099,7 @@ an AST internally, so it can work with it almost like a lisp. #+BEGIN_SRC emacs-lisp (use-package js2-mode - :mode (("\\.js\\'" . js2-mode) - ("\\.jsx\\'" . js2-jsx-mode)) + :mode (("\\.js\\'" . js2-mode)) :interpreter ("node" . js2-mode) :functions js2-next-error :config (progn @@ -2124,6 +2123,15 @@ an AST internally, so it can work with it almost like a lisp. js2-strict-missing-semi-warning nil))) #+END_SRC +**** rjsx-mode + +A set of advice for js2-jsx-mode to work better with React. + +#+BEGIN_SRC emacs-lisp +(use-package rjsx-mode + :mode (("\\.jsx\\'" . rjsx-mode))) +#+END_SRC + **** js2-refactor Thanks to the AST provided by js2-mode, refactoring is possible. This |