Mercurial > vim
annotate runtime/indent/javascript.vim @ 7950:38b8e3702798
Added tag v7.4.1270 for changeset 3f7382858d4d6a1781c822403c5d049ac1dd14bd
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 06 Feb 2016 20:00:05 +0100 |
parents | 0303182665d5 |
children | 9eaf8ef656e9 |
rev | line source |
---|---|
1118 | 1 " Vim indent file |
2 " Language: Javascript | |
6823 | 3 " Maintainer: Going to be Darrick Wiebe |
4 " Last Change: 2015 Jun 09 | |
1118 | 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 |
6823 | 15 setlocal cinkeys-=0# |
16 setlocal cinkeys+=0] | |
1118 | 17 |
18 let b:undo_indent = "setl cin<" |