Skip to content

Instantly share code, notes, and snippets.

@justincampbell
Created October 23, 2018 01:21
Show Gist options
  • Save justincampbell/a4fdab13d3c3c352793f78eb9e245c17 to your computer and use it in GitHub Desktop.
Save justincampbell/a4fdab13d3c3c352793f78eb9e245c17 to your computer and use it in GitHub Desktop.
" 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