heavim/bundles-init/vim-test.cfg.vim
Emmanuel BENOîT dd93afedb6 Changed test shortcuts
Use leader-based sequences, document the fuck out of them
2021-05-18 15:49:52 +02:00

8 lines
282 B
VimL

" Run tests in the background, send results to the quickfix window
let test#strategy = 'asyncrun_background'
" Shortcuts
nmap <silent> <Leader>Ta :TestSuite<CR>
nmap <silent> <Leader>Tf :TestFile<CR>
nmap <silent> <Leader>Tc :TestNearest<CR>
nmap <silent> <Leader>TT :TestLast<CR>