diff options
author | w0rp <devw0rp@gmail.com> | 2018-04-23 10:16:48 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-04-23 10:16:48 +0100 |
commit | 7d6a303592367ec4d0d5207351cc6232a4e25a32 (patch) | |
tree | 9a92a33480152fa93a8388c052d6426f072619bc /plugin | |
parent | ef130c4428b12785baeb399014aa79dd1cb4267b (diff) | |
download | ale-7d6a303592367ec4d0d5207351cc6232a4e25a32.zip |
Move autocmd commands out of the toggle file, to improve load times
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/ale.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim index 2a97e563..d59ffd6b 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -301,7 +301,7 @@ nnoremap <silent> <Plug>(ale_find_references) :ALEFindReferences<Return> nnoremap <silent> <Plug>(ale_hover) :ALEHover<Return> " Set up autocmd groups now. -call ale#toggle#InitAuGroups() +call ale#autocmd#InitAuGroups() " Housekeeping |