summaryrefslogtreecommitdiff
path: root/ale_linters/haskell/hls.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/haskell/hls.vim')
-rw-r--r--ale_linters/haskell/hls.vim5
1 files changed, 3 insertions, 2 deletions
diff --git a/ale_linters/haskell/hls.vim b/ale_linters/haskell/hls.vim
index 7f9efc38..7f7f42e1 100644
--- a/ale_linters/haskell/hls.vim
+++ b/ale_linters/haskell/hls.vim
@@ -16,8 +16,9 @@ function! ale_linters#haskell#hls#FindRootFile(buffer) abort
for l:path in ale#path#Upwards(expand('#' . a:buffer . ':p:h'))
for l:root_file in l:serach_root_files
- if filereadable(l:path . l:root_file)
- return l:path
+ if filereadable(l:path . '/' . l:root_file)
+ " Add on / so fnamemodify(..., ':h') below keeps the path.
+ return l:path . '/'
endif
endfor
endfor