Mercurial > vim
annotate runtime/indent/javascript.vim @ 5425:9521463d4fc1
Update runtime files.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sun, 03 Nov 2013 21:14:31 +0100 |
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<" |