Mercurial > vim
annotate runtime/indent/javascript.vim @ 9309:178252c6850e v7.4.1937
commit https://github.com/vim/vim/commit/ab47c61f46f0797308217cd3c045472cb0ec3195
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jun 14 22:02:26 2016 +0200
patch 7.4.1937
Problem: No test for directory stack in quickfix.
Solution: Add a test. (Yegappan Lakshmanan)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 14 Jun 2016 22:15:08 +0200 |
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<" |