1
0
mirror of https://github.com/amix/vimrc synced 2025-07-09 02:25:00 +08:00

Removed vim-go

This commit is contained in:
Amir Salihefendic
2019-11-17 16:45:35 +01:00
parent 3b7a7ded31
commit 8c6f4bdf7f
172 changed files with 0 additions and 24061 deletions

View File

@ -1,37 +0,0 @@
" vint: -ProhibitSetNoCompatible
" don't spam the user when Vim is started in Vi compatibility mode
let s:cpo_save = &cpo
set cpo&vim
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
" restore Vi compatibility settings
let &cpo = s:cpo_save
unlet s:cpo_save
" vim: sw=2 ts=2 et