File tree Expand file tree Collapse file tree 1 file changed +17
-11
lines changed Expand file tree Collapse file tree 1 file changed +17
-11
lines changed Original file line number Diff line number Diff line change @@ -24,17 +24,23 @@ augroup OmniSharp_FileType
2424
2525 autocmd TextChanged <buffer> call OmniSharp#actions#buffer#Update ()
2626
27- if g: OmniSharp_highlighting
28- autocmd BufEnter <buffer> call OmniSharp#actions#highlight#Buffer ()
29- endif
30- if g: OmniSharp_highlighting >= 2
31- autocmd InsertLeave ,TextChanged <buffer> call OmniSharp#actions#highlight#Buffer ()
32- endif
33- if g: OmniSharp_highlighting >= 3
34- autocmd TextChangedI <buffer> call OmniSharp#actions#highlight#Buffer ()
35- if exists (' ##TextChangedP' )
36- autocmd TextChangedP <buffer> call OmniSharp#actions#highlight#Buffer ()
37- endif
27+ autocmd BufEnter <buffer>
28+ \ if g: OmniSharp_highlighting |
29+ \ call OmniSharp#actions#highlight#Buffer () |
30+ \ endif
31+ autocmd InsertLeave ,TextChanged <buffer>
32+ \ if g: OmniSharp_highlighting >= 2 |
33+ \ call OmniSharp#actions#highlight#Buffer () |
34+ \ endif
35+ autocmd TextChangedI <buffer>
36+ \ if g: OmniSharp_highlighting >= 3 |
37+ \ call OmniSharp#actions#highlight#Buffer () |
38+ \ endif
39+ if exists (' ##TextChangedP' )
40+ autocmd TextChangedP <buffer>
41+ \ if g: OmniSharp_highlighting >= 3 |
42+ \ call OmniSharp#actions#highlight#Buffer () |
43+ \ endif
3844 endif
3945
4046augroup END
You can’t perform that action at this time.
0 commit comments