diff options
author | w0rp <devw0rp@gmail.com> | 2018-05-28 19:19:20 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-05-28 19:19:20 +0100 |
commit | f2837b5802c14e0fcdddf1af7caab0fb96858589 (patch) | |
tree | 0c603e450064f74f7998ec07bbc473b949bc13c9 /test/test_lint_error_delay.vader | |
parent | cae194d1bda3ed867aaaf8d611f7de67a3f8c225 (diff) | |
download | ale-f2837b5802c14e0fcdddf1af7caab0fb96858589.zip |
#1524 - Define global variables where they are needed
Diffstat (limited to 'test/test_lint_error_delay.vader')
-rw-r--r-- | test/test_lint_error_delay.vader | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_lint_error_delay.vader b/test/test_lint_error_delay.vader index d5397087..cf73b2c0 100644 --- a/test/test_lint_error_delay.vader +++ b/test/test_lint_error_delay.vader @@ -2,7 +2,7 @@ Before: runtime autoload/ale.vim " Replace one of the key ALE functions and make it throw. - function! ale#FileTooLarge() abort + function! ale#FileTooLarge(buffer) abort throw 'broken' endfunction |