diff options
author | w0rp <devw0rp@gmail.com> | 2018-07-04 23:54:14 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-07-04 23:54:14 +0100 |
commit | 13a8f9c06110c065086ce7e569bab68d0e222398 (patch) | |
tree | a20f312df929d82d81a96adc4061772602ae7b80 /plugin | |
parent | 9ddf1b6a050bea6706bd51f2fd5f252c735bc1cc (diff) | |
download | ale-13a8f9c06110c065086ce7e569bab68d0e222398.zip |
Optimise ale#Var a little
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/ale.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim index 3bd12015..16a40268 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -44,6 +44,8 @@ endif " This global variable is used internally by ALE for tracking information for " each buffer which linters are being run against. let g:ale_buffer_info = {} +" This global Dictionary tracks data for fixing code. Don't mess with it. +let g:ale_fix_buffer_data = {} " User Configuration |