Fix vimrc

This commit is contained in:
Talia 2019-12-01 20:27:47 +01:00
parent cd531ba981
commit 1f3fc2384f
1 changed files with 1 additions and 1 deletions

2
vimrc
View File

@ -132,7 +132,7 @@ if !exists('s:snippets')
end
" Runs a sequence of commands asynchronously
function Async(array, ...)
function! Async(array, ...)
if len(a:array) > 0
call job_start(a:array[0], {"out_io": "null", "in_io": "null", "err_io": "null", "exit_cb": function("Async", [a:array[1:-1]])})
end