diff options
author | w0rp <devw0rp@gmail.com> | 2020-08-29 14:23:51 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2020-08-29 14:23:58 +0100 |
commit | bc3a843e102d4490b2476b53531807ab624417e7 (patch) | |
tree | 9edda30cd36a830af6944abd64c5c191272a9a76 /autoload | |
parent | 6b138b965d09d660d50937d02aeb1b38d6022dd0 (diff) | |
download | ale-bc3a843e102d4490b2476b53531807ab624417e7.zip |
Add a missing `augroup END` line
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/fix.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/autoload/ale/fix.vim b/autoload/ale/fix.vim index b04ab18f..8b841b13 100644 --- a/autoload/ale/fix.vim +++ b/autoload/ale/fix.vim @@ -383,3 +383,4 @@ endfunction augroup ALEBufferFixGroup autocmd! autocmd BufEnter * call ale#fix#ApplyQueuedFixes(str2nr(expand('<abuf>'))) +augroup END |