annotate runtime/indent/javascript.vim @ 10548:74effdaa369e

Updated runtime files. commit https://github.com/vim/vim/commit/68563937f58ea2dc31b58739336c383d2fd7e6cf Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 10 13:31:15 2017 +0100 Updated runtime files.
author Christian Brabandt <cb@256bit.org>
date Tue, 10 Jan 2017 13:45:05 +0100
parents 03fa8a51e9dc
children 146a1e213b60
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1118
2b8ff9e3c520 updated for version 7.1a
vimboss
parents:
diff changeset
1 " Vim indent file
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
2 " Language: Javascript
9975
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9860
diff changeset
3 " Maintainer: Chris Paul ( https://github.com/bounceme )
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
4 " URL: https://github.com/pangloss/vim-javascript
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
5 " Last Change: December 31, 2016
1118
2b8ff9e3c520 updated for version 7.1a
vimboss
parents:
diff changeset
6
2b8ff9e3c520 updated for version 7.1a
vimboss
parents:
diff changeset
7 " Only load this indent file when no other was loaded.
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
8 if exists('b:did_indent')
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
9 finish
1118
2b8ff9e3c520 updated for version 7.1a
vimboss
parents:
diff changeset
10 endif
2b8ff9e3c520 updated for version 7.1a
vimboss
parents:
diff changeset
11 let b:did_indent = 1
2b8ff9e3c520 updated for version 7.1a
vimboss
parents:
diff changeset
12
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
13 " Now, set up our indentation expression and keys that trigger it.
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
14 setlocal indentexpr=GetJavascriptIndent()
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
15 setlocal autoindent nolisp nosmartindent
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
16 setlocal indentkeys+=0],0)
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
17
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
18 let b:undo_indent = 'setlocal indentexpr< smartindent< autoindent< indentkeys<'
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
19
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
20 " Only define the function once.
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
21 if exists('*GetJavascriptIndent')
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
22 finish
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
23 endif
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
24
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
25 let s:cpo_save = &cpo
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
26 set cpo&vim
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
27
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
28 " Get shiftwidth value
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
29 if exists('*shiftwidth')
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
30 function s:sw()
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
31 return shiftwidth()
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
32 endfunction
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
33 else
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
34 function s:sw()
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
35 return &sw
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
36 endfunction
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
37 endif
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
38
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
39 " searchpair() wrapper
9975
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9860
diff changeset
40 if has('reltime')
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
41 function s:GetPair(start,end,flags,skip,time,...)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
42 return searchpair('\m'.a:start,'','\m'.a:end,a:flags,a:skip,max([prevnonblank(v:lnum) - 2000,0] + a:000),a:time)
9975
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9860
diff changeset
43 endfunction
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9860
diff changeset
44 else
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
45 function s:GetPair(start,end,flags,skip,...)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
46 return searchpair('\m'.a:start,'','\m'.a:end,a:flags,a:skip,max([prevnonblank(v:lnum) - 1000,get(a:000,1)]))
9975
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9860
diff changeset
47 endfunction
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9860
diff changeset
48 endif
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
49
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
50 " Regex of syntax group names that are or delimit string or are comments.
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
51 let s:syng_strcom = 'string\|comment\|regex\|special\|doc\|template'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
52 let s:syng_str = 'string\|template'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
53 let s:syng_com = 'comment\|doc'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
54 " Expression used to check whether we should skip a match with searchpair().
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
55 let s:skip_expr = "synIDattr(synID(line('.'),col('.'),0),'name') =~? '".s:syng_strcom."'"
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
56
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
57 function s:skip_func()
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
58 if !s:free || search('\m`\|\*\/','nW',s:looksyn)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
59 let s:free = !eval(s:skip_expr)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
60 let s:looksyn = s:free ? line('.') : s:looksyn
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
61 return !s:free
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
62 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
63 let s:looksyn = line('.')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
64 return (search('\m\/','nbW',s:looksyn) || search('\m[''"]\|\\$','nW',s:looksyn)) && eval(s:skip_expr)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
65 endfunction
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
66
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
67 function s:alternatePair(stop)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
68 let pos = getpos('.')[1:2]
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
69 while search('\m[][(){}]','bW',a:stop)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
70 if !s:skip_func()
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
71 let idx = stridx('])}',s:looking_at())
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
72 if idx + 1
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
73 if !s:GetPair(['\[','(','{'][idx], '])}'[idx],'bW','s:skip_func()',2000,a:stop)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
74 break
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
75 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
76 else
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
77 return
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
78 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
79 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
80 endwhile
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
81 call call('cursor',pos)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
82 endfunction
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
83
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
84 function s:save_pos(f,...)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
85 let l:pos = getpos('.')[1:2]
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
86 let ret = call(a:f,a:000)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
87 call call('cursor',l:pos)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
88 return ret
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
89 endfunction
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
90
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
91 function s:syn_at(l,c)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
92 return synIDattr(synID(a:l,a:c,0),'name')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
93 endfunction
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
94
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
95 function s:looking_at()
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
96 return getline('.')[col('.')-1]
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
97 endfunction
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
98
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
99 function s:token()
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
100 return s:looking_at() =~ '\k' ? expand('<cword>') : s:looking_at()
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
101 endfunction
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
102
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
103 function s:b_token()
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
104 if s:looking_at() =~ '\k'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
105 call search('\m\<','cbW')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
106 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
107 return search('\m\S','bW')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
108 endfunction
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
109
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
110 function s:previous_token()
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
111 let l:n = line('.')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
112 while s:b_token()
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
113 if (s:looking_at() == '/' || line('.') != l:n && search('\m\/\/','nbW',
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
114 \ line('.'))) && s:syn_at(line('.'),col('.')) =~? s:syng_com
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
115 call search('\m\_[^/]\zs\/[/*]','bW')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
116 else
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
117 return s:token()
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
118 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
119 endwhile
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
120 return ''
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
121 endfunction
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
122
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
123 function s:others(p)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
124 return "((line2byte(line('.')) + col('.')) <= ".(line2byte(a:p[0]) + a:p[1]).") || ".s:skip_expr
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
125 endfunction
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
126
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
127 function s:tern_skip(p)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
128 return s:GetPair('{','}','nbW',s:others(a:p),200,a:p[0]) > 0
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
129 endfunction
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
130
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
131 function s:tern_col(p)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
132 return s:GetPair('?',':\@<!::\@!','nbW',s:others(a:p)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
133 \ .' || s:tern_skip('.string(a:p).')',200,a:p[0]) > 0
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
134 endfunction
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
135
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
136 function s:label_col()
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
137 let pos = getpos('.')[1:2]
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
138 let [s:looksyn,s:free] = pos
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
139 call s:alternatePair(0)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
140 if s:save_pos('s:IsBlock')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
141 let poss = getpos('.')[1:2]
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
142 return call('cursor',pos) || !s:tern_col(poss)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
143 elseif s:looking_at() == ':'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
144 return !s:tern_col([0,0])
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
145 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
146 endfunction
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
147
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
148 " configurable regexes that define continuation lines, not including (, {, or [.
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
149 let s:opfirst = '^' . get(g:,'javascript_opfirst',
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
150 \ '\%([<>=,?^%|*/&]\|\([-.:+]\)\1\@!\|!=\|in\%(stanceof\)\=\>\)')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
151 let s:continuation = get(g:,'javascript_continuation',
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
152 \ '\%([<=,.~!?/*^%|&:]\|+\@<!+\|-\@<!-\|=\@<!>\|\<\%(typeof\|delete\|void\|in\|instanceof\)\)') . '$'
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
153
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
154 function s:continues(ln,con)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
155 return !cursor(a:ln, match(' '.a:con,s:continuation)) &&
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
156 \ eval((['s:syn_at(line("."),col(".")) !~? "regex"'] +
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
157 \ repeat(['s:previous_token() != "."'],5) + [1])[
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
158 \ index(split('/ typeof in instanceof void delete'),s:token())])
9975
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9860
diff changeset
159 endfunction
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9860
diff changeset
160
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
161 " get the line of code stripped of comments and move cursor to the last
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
162 " non-comment char.
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
163 function s:Trim(ln)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
164 let pline = substitute(getline(a:ln),'\s*$','','')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
165 let l:max = max([match(pline,'.*[^/]\zs\/[/*]'),0])
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
166 while l:max && s:syn_at(a:ln, strlen(pline)) =~? s:syng_com
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
167 let pline = substitute(strpart(pline, 0, l:max),'\s*$','','')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
168 let l:max = max([match(pline,'.*[^/]\zs\/[/*]'),0])
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
169 endwhile
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
170 return cursor(a:ln,strlen(pline)) ? pline : pline
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
171 endfunction
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
172
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
173 " Find line above 'lnum' that isn't empty or in a comment
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
174 function s:PrevCodeLine(lnum)
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
175 let l:n = prevnonblank(a:lnum)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
176 while l:n
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
177 if getline(l:n) =~ '^\s*\/[/*]'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
178 if (stridx(getline(l:n),'`') > 0 || getline(l:n-1)[-1:] == '\') &&
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
179 \ s:syn_at(l:n,1) =~? s:syng_str
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
180 return l:n
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
181 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
182 let l:n = prevnonblank(l:n-1)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
183 elseif s:syn_at(l:n,1) =~? s:syng_com
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
184 let l:n = s:save_pos('eval',
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
185 \ 'cursor('.l:n.',1) + search(''\m\/\*'',"bW")')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
186 else
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
187 return l:n
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
188 endif
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
189 endwhile
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
190 endfunction
1118
2b8ff9e3c520 updated for version 7.1a
vimboss
parents:
diff changeset
191
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
192 " Check if line 'lnum' has a balanced amount of parentheses.
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
193 function s:Balanced(lnum)
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
194 let l:open = 0
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
195 let l:line = getline(a:lnum)
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
196 let pos = match(l:line, '[][(){}]', 0)
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
197 while pos != -1
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
198 if s:syn_at(a:lnum,pos + 1) !~? s:syng_strcom
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
199 let l:open += match(' ' . l:line[pos],'[[({]')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
200 if l:open < 0
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
201 return
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
202 endif
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
203 endif
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
204 let pos = match(l:line, '[][(){}]', pos + 1)
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
205 endwhile
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
206 return !l:open
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
207 endfunction
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
208
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
209 function s:OneScope(lnum)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
210 let pline = s:Trim(a:lnum)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
211 let kw = 'else do'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
212 if pline[-1:] == ')' && s:GetPair('(', ')', 'bW', s:skip_expr, 100) > 0
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
213 call s:previous_token()
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
214 let kw = 'for if let while with'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
215 if index(split('await each'),s:token()) + 1
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
216 call s:previous_token()
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
217 let kw = 'for'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
218 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
219 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
220 return pline[-2:] == '=>' || index(split(kw),s:token()) + 1 &&
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
221 \ s:save_pos('s:previous_token') != '.'
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
222 endfunction
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
223
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
224 " returns braceless levels started by 'i' and above lines * &sw. 'num' is the
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
225 " lineNr which encloses the entire context, 'cont' if whether line 'i' + 1 is
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
226 " a continued expression, which could have started in a braceless context
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
227 function s:iscontOne(i,num,cont)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
228 let [l:i, l:num, bL] = [a:i, a:num + !a:num, 0]
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
229 let pind = a:num ? indent(l:num) + s:W : 0
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
230 let ind = indent(l:i) + (a:cont ? 0 : s:W)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
231 while l:i >= l:num && (ind > pind || l:i == l:num)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
232 if indent(l:i) < ind && s:OneScope(l:i)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
233 let bL += s:W
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
234 let l:i = line('.')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
235 elseif !a:cont || bL || ind < indent(a:i)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
236 break
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
237 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
238 let ind = min([ind, indent(l:i)])
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
239 let l:i = s:PrevCodeLine(l:i - 1)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
240 endwhile
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
241 return bL
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
242 endfunction
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
243
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
244 " https://github.com/sweet-js/sweet.js/wiki/design#give-lookbehind-to-the-reader
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
245 function s:IsBlock()
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
246 if s:looking_at() == '{'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
247 let l:n = line('.')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
248 let char = s:previous_token()
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
249 let syn = char =~ '[{>/]' ? s:syn_at(line('.'),col('.')-(char == '{')) : ''
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
250 if syn =~? 'xml\|jsx'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
251 return char != '{'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
252 elseif char =~ '\k'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
253 return index(split('return const let import export yield default delete var await void typeof throw case new in instanceof')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
254 \ ,char) < (line('.') != l:n) || s:previous_token() == '.'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
255 elseif char == '>'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
256 return getline('.')[col('.')-2] == '=' || syn =~? '^jsflow'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
257 elseif char == ':'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
258 return getline('.')[col('.')-2] != ':' && s:label_col()
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
259 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
260 return syn =~? 'regex' || char !~ '[-=~!<*+,/?^%|&([]'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
261 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
262 endfunction
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
263
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
264 function GetJavascriptIndent()
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
265 let b:js_cache = get(b:,'js_cache',[0,0,0])
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
266 " Get the current line.
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
267 call cursor(v:lnum,1)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
268 let l:line = getline('.')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
269 let syns = s:syn_at(v:lnum, 1)
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
270
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
271 " start with strings,comments,etc.
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
272 if syns =~? s:syng_com
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
273 if l:line =~ '^\s*\*'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
274 return cindent(v:lnum)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
275 elseif l:line !~ '^\s*\/[/*]'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
276 return -1
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
277 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
278 elseif syns =~? s:syng_str && l:line !~ '^[''"]'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
279 if b:js_cache[0] == v:lnum - 1 && s:Balanced(v:lnum-1)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
280 let b:js_cache[0] = v:lnum
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
281 endif
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
282 return -1
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
283 endif
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
284 let l:lnum = s:PrevCodeLine(v:lnum - 1)
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
285 if !l:lnum
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
286 return
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
287 endif
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
288
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
289 let l:line = substitute(l:line,'^\s*','','')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
290 if l:line[:1] == '/*'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
291 let l:line = substitute(l:line,'^\%(\/\*.\{-}\*\/\s*\)*','','')
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
292 endif
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
293 if l:line =~ '^\/[/*]'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
294 let l:line = ''
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
295 endif
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
296
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
297 " the containing paren, bracket, or curly. Many hacks for performance
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
298 let idx = strlen(l:line) ? stridx('])}',l:line[0]) : -1
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
299 if b:js_cache[0] >= l:lnum && b:js_cache[0] < v:lnum &&
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
300 \ (b:js_cache[0] > l:lnum || s:Balanced(l:lnum))
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
301 call call('cursor',b:js_cache[1:])
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
302 else
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
303 let [s:looksyn, s:free, top] = [v:lnum - 1, 1, (!indent(l:lnum) &&
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
304 \ s:syn_at(l:lnum,1) !~? s:syng_str) * l:lnum]
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
305 if idx + 1
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
306 call s:GetPair(['\[','(','{'][idx], '])}'[idx],'bW','s:skip_func()',2000,top)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
307 elseif indent(v:lnum) && syns =~? 'block'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
308 call s:GetPair('{','}','bW','s:skip_func()',2000,top)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
309 else
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
310 call s:alternatePair(top)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
311 endif
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
312 endif
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
313
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
314 if idx + 1 || l:line[:1] == '|}'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
315 if idx == 2 && search('\m\S','bW',line('.')) && s:looking_at() == ')'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
316 call s:GetPair('(',')','bW',s:skip_expr,200)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
317 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
318 return indent('.')
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
319 endif
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
320
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
321 let b:js_cache = [v:lnum] + (line('.') == v:lnum ? [0,0] : getpos('.')[1:2])
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
322 let num = b:js_cache[1]
9975
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9860
diff changeset
323
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
324 let [s:W, isOp, bL, switch_offset] = [s:sw(),0,0,0]
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
325 if !num || s:IsBlock()
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
326 let pline = s:save_pos('s:Trim',l:lnum)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
327 if num && s:looking_at() == ')' && s:GetPair('(', ')', 'bW', s:skip_expr, 100) > 0
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
328 let num = line('.')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
329 if s:previous_token() ==# 'switch' && s:previous_token() != '.'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
330 if &cino !~ ':' || !has('float')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
331 let switch_offset = s:W
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
332 else
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
333 let cinc = matchlist(&cino,'.*:\(-\)\=\([0-9.]*\)\(s\)\=\C')
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
334 let switch_offset = float2nr(str2float(cinc[1].(strlen(cinc[2]) ? cinc[2] : strlen(cinc[3])))
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
335 \ * (strlen(cinc[3]) ? s:W : 1))
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
336 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
337 if pline[-1:] != '.' && l:line =~# '^\%(default\|case\)\>'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
338 return indent(num) + switch_offset
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
339 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
340 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
341 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
342 if pline[-1:] !~ '[{;]'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
343 if pline =~# ':\@<!:$'
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
344 call cursor(l:lnum,strlen(pline))
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
345 let isOp = s:tern_col(b:js_cache[1:2])
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
346 else
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
347 let isOp = l:line =~# s:opfirst || s:continues(l:lnum,pline)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
348 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
349 let bL = s:iscontOne(l:lnum,num,isOp)
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
350 let bL -= (bL && l:line[0] == '{') * s:W
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
351 endif
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
352 endif
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
353
10548
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
354 " main return
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
355 if isOp
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
356 return (num ? indent(num) : -s:W) + (s:W * 2) + switch_offset + bL
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
357 elseif num
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
358 return indent(num) + s:W + switch_offset + bL
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
359 endif
74effdaa369e Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents: 9975
diff changeset
360 return bL
9860
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
361 endfunction
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
362
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
363 let &cpo = s:cpo_save
9eaf8ef656e9 commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
364 unlet s:cpo_save