let g:denops#server#deno_args = ['-q', '--no-lock', '-A', '--unstable-ffi', '--unstable-kv'] function! s:interrupt() abort if quickrun#is_running() silent! call quickrun#sweep_sessions() endif silent! call denops#interrupt() endfunction " Interrupt the process of plugins via noremap call interrupt() inoremap call interrupt() cnoremap call interrupt() " Restart Denops server command! DenopsRestart call denops#server#restart() " Fix Deno module cache issue command! DenopsFixCache call denops#cache#update(#{reload: v:true})