File plugin/includefixer.vim changed (mode: 100644) (index c5fb7d0..d7ad3e3) |
... |
... |
function! s:FixIncludes() |
269 |
269 |
" write out all the groups |
" write out all the groups |
270 |
270 |
let l:next = <SID>WriteOut(l:start,l:module) |
let l:next = <SID>WriteOut(l:start,l:module) |
271 |
271 |
let l:next = <SID>WriteOut(l:next,l:system) |
let l:next = <SID>WriteOut(l:next,l:system) |
272 |
|
let l:next = <SID>WriteOut(l:next,l:local) |
|
|
272 |
|
let l:next = <SID>WriteOut(l:next,l:cstd) |
|
273 |
|
let l:next = <SID>WriteOut(l:next,l:cxxstd) |
|
274 |
|
let l:next = <SID>WriteOut(l:next,l:boost) |
|
275 |
|
let l:next = <SID>WriteOut(l:next,l:qt) |
273 |
276 |
|
|
274 |
277 |
let l:i = 0 |
let l:i = 0 |
275 |
278 |
while l:i < len(l:custom) |
while l:i < len(l:custom) |
|
... |
... |
function! s:FixIncludes() |
277 |
280 |
let l:i = l:i + 1 |
let l:i = l:i + 1 |
278 |
281 |
endwhile |
endwhile |
279 |
282 |
|
|
280 |
|
let l:next = <SID>WriteOut(l:next,l:boost) |
|
281 |
|
let l:next = <SID>WriteOut(l:next,l:qt) |
|
282 |
|
let l:next = <SID>WriteOut(l:next,l:cstd) |
|
283 |
|
let l:next = <SID>WriteOut(l:next,l:cxxstd) |
|
284 |
|
|
|
|
283 |
|
let l:next = <SID>WriteOut(l:next,l:local) |
285 |
284 |
endfunction |
endfunction |
286 |
285 |
|
|
287 |
286 |
command! FixIncludes call <SID>FixIncludes() |
command! FixIncludes call <SID>FixIncludes() |