plugins - Re-added vim-test
This commit is contained in:
parent
7ad6c76e53
commit
5923d8340b
3 changed files with 9 additions and 3 deletions
|
@ -1 +0,0 @@
|
|||
NeoBundle 'vim-test/vim-test'
|
2
plugins/vim-test.cfg.vim
Normal file
2
plugins/vim-test.cfg.vim
Normal file
|
@ -0,0 +1,2 @@
|
|||
" Run tests in the background, send results to the quickfix window
|
||||
let test#strategy = 'asyncrun_background'
|
|
@ -1,5 +1,10 @@
|
|||
" Run tests in the background, send results to the quickfix window
|
||||
let test#strategy = 'asyncrun_background'
|
||||
call dein#add('vim-test/vim-test', #{
|
||||
\ lazy: 1,
|
||||
\ on_cmd: [
|
||||
\ 'TestSuite', 'TestFile', 'TestNearest', 'TestLast',
|
||||
\ 'TestVisit', 'TestClass',
|
||||
\ ],
|
||||
\ })
|
||||
|
||||
" Shortcuts
|
||||
nmap <silent> <Leader>Ta :TestSuite<CR>
|
Loading…
Reference in a new issue