diff options
author | w0rp <devw0rp@gmail.com> | 2017-05-20 15:52:42 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-05-20 19:02:36 +0100 |
commit | ad52b9630d95a9cf684872ec3614d650b75ed935 (patch) | |
tree | 6ae24a552a39026892c475c20f27e1998d673867 /autoload | |
parent | ed097cfcbd5c52835c27632f1e3ac52d2fe0b11a (diff) | |
download | ale-ad52b9630d95a9cf684872ec3614d650b75ed935.zip |
Fix Funcref fixers for NeoVim
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/fix.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/fix.vim b/autoload/ale/fix.vim index 9d0145cf..53c3fd24 100644 --- a/autoload/ale/fix.vim +++ b/autoload/ale/fix.vim @@ -265,7 +265,7 @@ function! s:GetCallbacks() abort endif endif - call add(l:corrected_list, function(l:Item)) + call add(l:corrected_list, ale#util#GetFunction(l:Item)) endfor return l:corrected_list |