Created
October 23, 2018 01:21
-
-
Save justincampbell/a4fdab13d3c3c352793f78eb9e245c17 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" vim-test | |
autocmd WinEnter,VimResized * call SetTestStrategy() | |
function! SetTestStrategy() | |
if (winheight('%') > 40) | |
let g:test#strategy = "tslime" | |
else | |
let g:test#strategy = "dispatch" | |
endif | |
endfunction | |
let g:tslime_always_current_session = 1 | |
let g:tslime_always_current_window = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment