70 lines
2.5 KiB
VimL
Raw Normal View History

2021-03-18 09:05:37 +01:00
nmap <silent> <leader>gb :up<bar>:GoBuild<cr>
nmap <silent> <leader>gr :up<bar>:GoRun<cr>
2021-03-23 07:46:31 +01:00
nmap <silent> <leader>gt :up<bar>:GoTest!<cr>
nmap <silent> <leader>gT :up<bar>:GoTest<cr>
nmap <silent> <leader>gf :up<bar>:GoTestFunc!<cr>
nmap <silent> <leader>gF :up<bar>:GoTestFunc<cr>
2021-04-05 21:56:07 +02:00
nmap <silent> <leader>gj :GoDecls<cr>
nmap <silent> <leader>gJ :GoDeclsDir<cr>
2021-03-18 09:05:37 +01:00
nmap <silent> <leader>gk :GoDocBrowser<cr>
2021-01-27 15:32:26 +01:00
2021-03-18 17:18:38 +01:00
nmap <silent> <leader>gv :vsplit<bar>:GoAlternate!<cr>
nmap <silent> <leader>gV <c-w><c-o>:vsplit<bar>:GoAlternate!<cr>
nmap <silent> <leader>gs :split<bar>:GoAlternate!<cr>
nmap <silent> <leader>gS <c-w><c-o>:split<bar>:GoAlternate!<cr>
2021-03-18 09:05:37 +01:00
nmap <silent> <leader>gat <esc>:GoAddTags<cr>
nmap <silent> <leader>grt <esc>:GoRemoveTags<cr>
nmap <silent> <leader>gec <esc>:up<bar>:GoErrCheck<cr>
2021-01-27 20:17:05 +01:00
2021-04-19 09:29:13 +02:00
nnoremap <silent> <leader>_ ciw_<esc>b
2021-03-26 09:34:54 +01:00
2021-01-27 20:17:05 +01:00
nnoremap <silent> dr :GoDebugBreakpoint<cr>
nnoremap <silent> d! :GoDebugStart<cr>
nnoremap <silent> dc :GoDebugContinue<cr>
nnoremap <silent> dq :GoDebugStop<cr>
nnoremap <silent> dn :GoDebugNext<cr>
nnoremap <silent> ds :GoDebugStep<cr>
" Vim-Go configuration
let g:go_gopls_enabled = 0
2021-06-22 06:24:37 +02:00
let g:go_fmt_autosave = 1
2021-09-05 23:32:03 +02:00
let g:go_fmt_command = "goimports"
2021-03-24 15:19:54 +01:00
let g:go_imports_autosave = 0
2021-06-22 06:24:37 +02:00
let g:go_textobj_enabled = 0
2021-01-27 20:17:05 +01:00
let g:go_auto_sameids = 0
let g:go_auto_type_info = 0
let g:go_code_completion_enabled = 0
2021-03-18 20:57:37 +01:00
let g:go_echo_command_info = 0
2021-03-18 09:05:37 +01:00
let g:go_echo_go_info = 0
2021-06-22 06:24:37 +02:00
let g:go_textobj_enabled = 0
2021-03-19 08:08:57 +01:00
let g:go_highlight_diagnostic_errors = 0
let g:go_highlight_diagnostic_warnings = 0
2021-03-24 09:38:55 +01:00
let g:go_highlight_trailing_whitespace_error=0
2021-10-08 14:30:25 +02:00
let g:go_fmt_command = 'goimports'
" g:go_statusline_duration doesn't seem to work accurately, but does help
" reduce the time the build/test success messages are shown in the status
" line.
2021-03-18 20:57:37 +01:00
let g:go_statusline_duration = 1000
2021-01-28 09:21:55 +01:00
2021-01-27 20:17:05 +01:00
autocmd BufNewFile,BufRead *.go nmap <silent> <leader>g6 :GoAlternate!<cr>
2021-01-27 15:32:26 +01:00
iabbrev fmtpl fmt.Println("")<esc>hi
iabbrev fmtpf fmt.Printf("\n")<esc>3hi
iabbrev mk make([]MyType, 0)<esc>9h
iabbrev wr w http.ResponseWriter, r *http.Request
iabbrev ttt t *testing.T
2021-02-02 12:37:36 +01:00
iabbrev errP <esc>ccif err != nil {<cr>panic(err)<cr>}
iabbrev errl <esc>ccif err != nil {<cr>log.Println(err)<cr>}
2021-09-05 23:32:03 +02:00
iabbrev errf <esc>ccif err != nil {<cr>log.Fatal(err)<cr>}
2021-02-02 12:37:36 +01:00
iabbrev errp <esc>ccif err != nil {<cr>fmt.Println(err)<cr>}
iabbrev errr <esc>ccif err != nil {<cr>return err<cr>}
iabbrev defr <esc>ccdefer func() {<cr><cr>}()<esc>ki
2021-03-15 16:29:40 +01:00
iabbrev logd log.Debug().Msg("
iabbrev logi log.Info().Msg("
iabbrev loge log.Error().Msg("
iabbrev logf log.Fatal().Msg("
2021-05-31 10:29:55 +02:00
iabbrev ctxcc ctx context.Context