We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ec1518 commit 1846292Copy full SHA for 1846292
autoload/dispatch/screen.vim
@@ -25,7 +25,7 @@ function! dispatch#screen#spawn(command, request) abort
25
\ . shellescape('exec ' . dispatch#isolate(a:request,
26
\ ['STY', 'WINDOW'], dispatch#set_title(a:request), a:command))
27
silent execute '!' . escape(command, '!#%')
28
- if a:request.background || a:request.action !=# 'start' && !has('gui_running')
+ if (a:request.background || a:request.action !=# 'start') && !has('gui_running') && !has('nvim')
29
silent !screen -X other
30
endif
31
return 1
0 commit comments