diff options
author | w0rp <devw0rp@gmail.com> | 2021-02-06 18:49:42 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2021-02-06 18:49:42 +0000 |
commit | 99eb68e6ca98a2eaabeb1e1eea00b3f59431b9dc (patch) | |
tree | 5c260e867f33b2e1461e7d3542cf388259e654c3 /plugin | |
parent | f9f2ad276507ec6fb3d92f3f3525de1cb4d17281 (diff) | |
download | ale-99eb68e6ca98a2eaabeb1e1eea00b3f59431b9dc.zip |
#3362 Disable LSP/tsserver hints/suggestions by default
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/ale.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim index 1735715d..845586be 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -90,6 +90,9 @@ let g:ale_lint_on_filetype_changed = get(g:, 'ale_lint_on_filetype_changed', 1) " This Dictionary configures the default LSP roots for various linters. let g:ale_lsp_root = get(g:, 'ale_lsp_root', {}) +" If set to 1, hints and suggestion from LSP servers and tsserver will be shown. +let g:ale_lsp_suggestions = get(g:, 'ale_lsp_suggestions', 0) + " This flag can be set to 1 to enable automatically fixing files on save. let g:ale_fix_on_save = get(g:, 'ale_fix_on_save', 0) |