mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/ale/autoload/ale/racket.vim

13 lines
321 B
VimL
Raw Normal View History

2021-07-30 16:52:54 -04:00
function! ale#racket#FindProjectRoot(buffer) abort
let l:cwd = expand('#' . a:buffer . ':p:h')
let l:highest_init = l:cwd
for l:path in ale#path#Upwards(l:cwd)
if filereadable(l:path.'/init.rkt')
let l:highest_init = l:path
endif
endfor
return l:highest_init
endfunction