summaryrefslogtreecommitdiff
path: root/test/linter/test_texlab.vader
diff options
context:
space:
mode:
authorHoracio Sanson <hsanson@gmail.com>2022-01-05 22:19:32 +0900
committerGitHub <noreply@github.com>2022-01-05 22:19:32 +0900
commit7b8e711877449478796306be9124c1fdd690b987 (patch)
tree32663ce0a1db0d0f8561374385af65c999847a54 /test/linter/test_texlab.vader
parent11a90ad0ff0893118cd0b09de914c53f5683eeef (diff)
downloadale-7b8e711877449478796306be9124c1fdd690b987.zip
Fix 4025 - Allow to configure texlab LSP settings (#4027)
* Fix 4025 - Allow to configure texlab LSP settings * Fix ale_tex_texlab_config type in help
Diffstat (limited to 'test/linter/test_texlab.vader')
-rw-r--r--test/linter/test_texlab.vader5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/linter/test_texlab.vader b/test/linter/test_texlab.vader
index 75fc2f25..72b78745 100644
--- a/test/linter/test_texlab.vader
+++ b/test/linter/test_texlab.vader
@@ -28,3 +28,8 @@ Execute(The options should be configurable):
let b:ale_tex_texlab_options = '-v'
AssertLinter 'texlab', ale#Escape('texlab') . ' ' . b:ale_tex_texlab_options
+
+Execute(Should accpet configuration settings):
+ AssertLSPConfig {}
+ let b:ale_tex_texlab_config = {'build':{'onSave':v:true}}
+ AssertLSPConfig {'build':{'onSave':v:true}}