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
This commit is contained in:
Horacio Sanson
2022-01-05 22:19:32 +09:00
committed by GitHub
parent 11a90ad0ff
commit 7b8e711877
3 changed files with 23 additions and 1 deletions

View File

@@ -4,6 +4,7 @@
call ale#Set('tex_texlab_executable', 'texlab')
call ale#Set('tex_texlab_options', '')
call ale#Set('tex_texlab_config', {})
function! ale_linters#tex#texlab#GetProjectRoot(buffer) abort
let l:git_path = ale#path#FindNearestDirectory(a:buffer, '.git')
@@ -21,4 +22,5 @@ call ale#linter#Define('tex', {
\ 'executable': {b -> ale#Var(b, 'tex_texlab_executable')},
\ 'command': function('ale_linters#tex#texlab#GetCommand'),
\ 'project_root': function('ale_linters#tex#texlab#GetProjectRoot'),
\ 'lsp_config': {b -> ale#Var(b, 'tex_texlab_config')},
\})