Set the g:ale_completion_enabled option when completion is enabled or disabled
This commit is contained in:
parent
d1424de1f9
commit
b4d23d700b
@ -321,9 +321,11 @@ function! s:Setup(enabled) abort
|
|||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! ale#completion#Enable() abort
|
function! ale#completion#Enable() abort
|
||||||
|
let g:ale_completion_enabled = 1
|
||||||
call s:Setup(1)
|
call s:Setup(1)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! ale#completion#Disable() abort
|
function! ale#completion#Disable() abort
|
||||||
|
let g:ale_completion_enabled = 0
|
||||||
call s:Setup(0)
|
call s:Setup(0)
|
||||||
endfunction
|
endfunction
|
||||||
|
Loading…
Reference in New Issue
Block a user