aboutsummaryrefslogtreecommitdiffstats
path: root/ftplugin/go.vim
diff options
context:
space:
mode:
authorTeddy Wing2020-09-07 19:31:12 +0200
committerTeddy Wing2020-09-07 19:36:35 +0200
commitbf3fc450c452df803b0f26cb29ecbcc82b0bfa34 (patch)
tree4a8211c66a508d6d9b176ac2373ce09f2574b967 /ftplugin/go.vim
parent5c0e0ed3d35ebf2445901a664ae16d2f902b5a27 (diff)
downloaddotvim-bf3fc450c452df803b0f26cb29ecbcc82b0bfa34.tar.bz2
ftplugin/go.vim: Run shell tests with verbose flag
In case I need to add logs for debugging.
Diffstat (limited to 'ftplugin/go.vim')
-rw-r--r--ftplugin/go.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ftplugin/go.vim b/ftplugin/go.vim
index 1dc680d..a606635 100644
--- a/ftplugin/go.vim
+++ b/ftplugin/go.vim
@@ -35,7 +35,7 @@ nmap <buffer> Zc <Plug>(go-test-compile)
nmap <buffer> Zf <Plug>(go-imports)
nmap <buffer> <leader>z <Plug>(go-test)
nmap <buffer> <leader>Z <Plug>(go-test-func)
-nnoremap <buffer> Zs :execute '!go test ' . fnameescape(expand('%:p:h'))<CR>
+nnoremap <buffer> Zs :execute '!go test -v ' . fnameescape(expand('%:p:h'))<CR>
nmap <buffer> z<C-^> :call go#alternate#Switch(1, 'edit')<CR>
nmap <buffer> <C-w>z<C-^> :call go#alternate#Switch(1, 'vsplit')<CR>