diff options
| author | Teddy Wing | 2020-09-07 19:31:12 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2020-09-07 19:36:35 +0200 | 
| commit | bf3fc450c452df803b0f26cb29ecbcc82b0bfa34 (patch) | |
| tree | 4a8211c66a508d6d9b176ac2373ce09f2574b967 /ftplugin | |
| parent | 5c0e0ed3d35ebf2445901a664ae16d2f902b5a27 (diff) | |
| download | dotvim-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')
| -rw-r--r-- | ftplugin/go.vim | 2 | 
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> | 
