Close #5002 - Support getting g:ale_root as a String
CI / Build (push) Waiting to run
CI / Lint (push) Blocked by required conditions
CI / Lua (push) Blocked by required conditions
CI / Neovim 0.10 Linux (push) Blocked by required conditions
CI / Neovim 0.12 Linux (push) Blocked by required conditions
CI / Vim 8.2 Linux (push) Blocked by required conditions
CI / Vim 9.2 Linux (push) Blocked by required conditions
CI / Neovim 0.10 Windows (push) Waiting to run
CI / Neovim 0.12 Windows (push) Waiting to run
CI / Vim 8.2 Windows (push) Waiting to run
CI / Vim 9.2 Windows (push) Waiting to run

This commit is contained in:
w0rp
2026-05-15 21:06:48 +01:00
parent 916c8764ce
commit 7b5b854fc4
5 changed files with 25 additions and 11 deletions
+6 -5
View File
@@ -33,11 +33,12 @@ Execute(The project root should be globally configurable):
AssertLSPProject ale#path#Simplify(g:dir . '/../test-files/perl')
unlet g:ale_root.languageserver
" As tracked by <https://github.com/dense-analysis/ale/issues/5002>, there
" is a bug with g:ale_root.
" While attempting to configure g:ale_root using a String might be a quite
" limiting setup, it would be handy for debugging. However the test case is
" missing here. It would unfortunately just fail.
" Configuring g:ale_root using a String works.
let g:ale_root = ale#path#Simplify(g:dir . '/../test-files/perl')
AssertLSPProject ale#path#Simplify(g:dir . '/../test-files/perl')
let g:ale_root = {}
endfor
Execute(The project root should be per buffer configurable):