diff options
author | w0rp <devw0rp@gmail.com> | 2017-11-30 10:34:51 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-11-30 10:34:51 +0000 |
commit | a990188e276aad9410bc6fd1b627153fb279ffac (patch) | |
tree | a353be5794f9e8528b80764c1dcb3c7c52d6520b /plugin | |
parent | fd261264d7020699d76ed2f6eecd9800ef5f5b9f (diff) | |
download | ale-a990188e276aad9410bc6fd1b627153fb279ffac.zip |
Fix #1176 - Add an option for caching failing executable checks
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/ale.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim index 8c97e39f..a07915f7 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -188,6 +188,10 @@ let g:ale_history_enabled = get(g:, 'ale_history_enabled', 1) " A flag for storing the full output of commands in the history. let g:ale_history_log_output = get(g:, 'ale_history_log_output', 1) +" A flag for caching failed executable checks. +" This is off by default, because it will cause problems. +call ale#Set('cache_executable_check_failures', 0) + " A dictionary mapping regular expression patterns to arbitrary buffer " variables to be set. Useful for configuration ALE based on filename " patterns. |