mirror of
https://github.com/amix/vimrc
synced 2025-06-16 09:35:01 +08:00
Updated plugins
This commit is contained in:
26
sources_non_forked/vim-go/scripts/runbench.vim
Normal file
26
sources_non_forked/vim-go/scripts/runbench.vim
Normal file
@ -0,0 +1,26 @@
|
||||
" vint: -ProhibitSetNoCompatible
|
||||
set nocompatible nomore shellslash encoding=utf-8 shortmess+=WIF
|
||||
lang mess C
|
||||
|
||||
if $RUNBENCH_SETTINGS is? 'all'
|
||||
let $RUNBENCH_SETTINGS = join(['array_whitespace_error', 'build_constraints',
|
||||
\ 'chan_whitespace_error', 'extra_types', 'fields', 'format_strings',
|
||||
\ 'function_arguments', 'function_calls', 'functions', 'generate_tags',
|
||||
\ 'operators', 'space_tab_error', 'string_spellcheck',
|
||||
\ 'trailing_whitespace_error', 'types', 'variable_assignments',
|
||||
\ 'variable_declarations'], ' ')
|
||||
endif
|
||||
|
||||
for s:s in split($RUNBENCH_SETTINGS, ' ')
|
||||
call execute('let g:go_highlight_' . s:s . ' = 1')
|
||||
endfor
|
||||
|
||||
filetype plugin indent on
|
||||
syntax on
|
||||
|
||||
syntime on
|
||||
redraw!
|
||||
let s:report = execute('syntime report')
|
||||
execute ':e ' . fnameescape($RUNBENCH_OUT)
|
||||
call setline('.', split(s:report, '\n'))
|
||||
wq
|
Reference in New Issue
Block a user