summaryrefslogtreecommitdiff
path: root/autoload/ale/toggle.vim
diff options
context:
space:
mode:
Diffstat (limited to 'autoload/ale/toggle.vim')
-rw-r--r--autoload/ale/toggle.vim5
1 files changed, 1 insertions, 4 deletions
diff --git a/autoload/ale/toggle.vim b/autoload/ale/toggle.vim
index 6809edd1..aa6d113b 100644
--- a/autoload/ale/toggle.vim
+++ b/autoload/ale/toggle.vim
@@ -4,9 +4,7 @@ function! ale#toggle#InitAuGroups() abort
augroup ALEPatternOptionsGroup
autocmd!
- if g:ale_enabled && g:ale_pattern_options_enabled
- autocmd BufEnter,BufRead * call ale#pattern_options#SetOptions()
- endif
+ autocmd BufEnter,BufRead * call ale#pattern_options#SetOptions(str2nr(expand('<abuf>')))
augroup END
augroup ALERunOnTextChangedGroup
@@ -71,7 +69,6 @@ function! ale#toggle#InitAuGroups() abort
augroup END
if !g:ale_enabled
- augroup! ALEPatternOptionsGroup
augroup! ALERunOnTextChangedGroup
augroup! ALERunOnEnterGroup
augroup! ALERunOnInsertLeave