]> code.delx.au - gnu-emacs-elpa/blob - README.md
Remove link to js2-highlight-vars-mode, add one to skewer-mode
[gnu-emacs-elpa] / README.md
1 Description
2 ======
3
4 An improved JavaScript mode for GNU Emacs. Forked from <http://code.google.com/p/js2-mode/>.
5
6 For some of the latest changes, see [latest user-visible changes](https://github.com/mooz/js2-mode/wiki/Latest-user-visible-changes).
7
8 Installation
9 ======
10
11 $ git clone git://github.com/mooz/js2-mode.git
12 $ cd js2-mode
13 $ git checkout emacs24
14 $ emacs --batch -f batch-byte-compile js2-mode.el
15
16 Then put js2-mode.elc into your site-lisp directory.
17
18 In your emacs config:
19
20 (autoload 'js2-mode "js2-mode" nil t)
21 (add-to-list 'auto-mode-alist '("\\.js$" . js2-mode))
22
23 See <http://code.google.com/p/js2-mode/wiki/InstallationInstructions> for
24 additional details.
25
26 Emacs 22 and 23
27 ===============
28
29 This version requires Emacs 24. For backwards-compatible version, check out the [`master` branch](https://github.com/mooz/js2-mode/tree/master).
30
31 Bugs
32 ====
33
34 If you find problems, please report them at <http://github.com/mooz/js2-mode/issues>.
35
36 See Also
37 ======
38
39 Some third-party modes that use the generated syntax tree:
40
41 * [js2-refactor](https://github.com/magnars/js2-refactor.el)
42 * [skewer-mode](https://github.com/skeeto/skewer-mode)