Mercurial > vim
annotate runtime/indent/javascript.vim @ 2412:ca3f40b0d95e vim73
Prepare for 7.3b release. Fix src/Makefile enabling python3 by default.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sun, 25 Jul 2010 17:42:45 +0200 |
parents | 5ffe000a9ecf |
children | 0303182665d5 |
rev | line source |
---|---|
1118 | 1 " Vim indent file |
2 " Language: Javascript | |
3 " Maintainer: None! Wanna improve this? | |
4 " Last Change: 2007 Jan 22 | |
5 | |
6 " Only load this indent file when no other was loaded. | |
7 if exists("b:did_indent") | |
8 finish | |
9 endif | |
10 let b:did_indent = 1 | |
11 | |
12 " C indenting is not too bad. | |
13 setlocal cindent | |
2297
5ffe000a9ecf
Improve Javascript indenting. Add "J" flag to 'cino'. (Hari Kumar G)
Bram Moolenaar <bram@vim.org>
parents:
1118
diff
changeset
|
14 setlocal cinoptions+=j1,J1 |
1118 | 15 |
16 let b:undo_indent = "setl cin<" |