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 2c5b283 commit ce4e076Copy full SHA for ce4e076
autoload/dispatch.vim
@@ -362,7 +362,8 @@ endfunction
362
363
function! s:dispatch(request) abort
364
for handler in g:dispatch_handlers
365
- if get(g:, 'dispatch_no_' . handler . '_' . get(a:request, 'action'))
+ if get(g:, 'dispatch_no_' . handler . '_' . get(a:request, 'action')) ||
366
+ \ get(g:, 'dispatch_no_' . handler . '_' . (get(a:request, 'action') ==# 'start' ? 'spawn' : 'dispatch'))
367
continue
368
endif
369
let response = call('dispatch#'.handler.'#handle', [a:request])
0 commit comments