57 lines
1.6 KiB
VimL
57 lines
1.6 KiB
VimL
let g:go_fmt_fail_silently = 1
|
|
let g:go_fmt_command = "gofmt" "Explicited the formater plugin (gofmt, goimports, goreturn...)
|
|
|
|
" Show a list of interfaces which is implemented by the type under your cursor
|
|
au FileType go nmap <Leader>s <Plug>(go-implements)
|
|
|
|
" Show type info for the word under your cursor
|
|
au FileType go nmap <Leader>i <Plug>(go-info)
|
|
|
|
" Open the relevant Godoc for the word under the cursor
|
|
au FileType go nmap <Leader>gd <Plug>(go-doc)
|
|
au FileType go nmap <Leader>gv <Plug>(go-doc-vertical)
|
|
|
|
" Open the Godoc in browser
|
|
au FileType go nmap <Leader>gb <Plug>(go-doc-browser)
|
|
|
|
" Run/build/test/coverage
|
|
au FileType go nmap <leader>gr <Plug>(go-run)
|
|
au FileType go nmap <leader>gb <Plug>(go-build)
|
|
au FileType go nmap <leader>gt <Plug>(go-test)
|
|
au FileType go nmap <leader>gc <Plug>(go-coverage)
|
|
|
|
" By default syntax-highlighting for Functions, Methods and Structs is disabled.
|
|
" Let's enable them!
|
|
let g:go_highlight_functions = 1
|
|
let g:go_highlight_methods = 1
|
|
let g:go_highlight_structs = 1
|
|
|
|
nmap <F8> :TagbarToggle<CR>
|
|
let g:tagbar_type_go = {
|
|
\ 'ctagstype' : 'go',
|
|
\ 'kinds' : [
|
|
\ 'p:package',
|
|
\ 'i:imports:1',
|
|
\ 'c:constants',
|
|
\ 'v:variables',
|
|
\ 't:types',
|
|
\ 'n:interfaces',
|
|
\ 'w:fields',
|
|
\ 'e:embedded',
|
|
\ 'm:methods',
|
|
\ 'r:constructor',
|
|
\ 'f:functions'
|
|
\ ],
|
|
\ 'sro' : '.',
|
|
\ 'kind2scope' : {
|
|
\ 't' : 'ctype',
|
|
\ 'n' : 'ntype'
|
|
\ },
|
|
\ 'scope2kind' : {
|
|
\ 'ctype' : 't',
|
|
\ 'ntype' : 'n'
|
|
\ },
|
|
\ 'ctagsbin' : 'gotags',
|
|
\ 'ctagsargs' : '-sort -silent'
|
|
\ }
|