From 5db8dd53007f8d008c6ad1884c5349b3ad69f898 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Thu, 11 Jun 2015 15:38:41 +0200 Subject: Emacs: Use js2 error movement in js2-mode --- tag-emacs/emacs.d/init.el | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tag-emacs/emacs.d/init.el') diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 933ac21c..3c2cb605 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -1428,6 +1428,11 @@ symbol, not word, as I need this for programming the most." (defun ap/javascript-setup () (autopair-mode -1) (auto-indent-mode -1)) + (defun ap/js2-prev-error () + (interactive) + (js2-next-error -1)) + (bind-key "M-g M-n" #'js2-next-error js2-mode-map) + (bind-key "M-g M-p" #'ap/js2-prev-error js2-mode-map) (add-hook 'js2-mode-hook #'ap/javascript-setup) (setq js2-basic-offset 4 js2-include-node-externs t))) -- cgit 1.4.1