diff options
author | w0rp <devw0rp@gmail.com> | 2018-02-25 12:57:54 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-02-25 12:57:54 +0000 |
commit | 478a2883a6c75e888bce2b0e7c800d5d8990f29e (patch) | |
tree | bd18537682b39659aca13f8e0dc1955554208f22 /autoload | |
parent | 0ddf16194d8f1b272127c5a6b2d84b5345757b17 (diff) | |
download | ale-478a2883a6c75e888bce2b0e7c800d5d8990f29e.zip |
#1363 Make ale#engine#IsCheckingBuffer part of the public API
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/engine.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/autoload/ale/engine.vim b/autoload/ale/engine.vim index 8c3d4c73..a21eecdd 100644 --- a/autoload/ale/engine.vim +++ b/autoload/ale/engine.vim @@ -76,6 +76,8 @@ function! ale#engine#InitBufferInfo(buffer) abort return 0 endfunction +" This function is documented and part of the public API. +" " Return 1 if ALE is busy checking a given buffer function! ale#engine#IsCheckingBuffer(buffer) abort let l:info = get(g:ale_buffer_info, a:buffer, {}) |