From 8bf5d144ed2299e0ecd6fa8f9703647e5c5ef02f Mon Sep 17 00:00:00 2001 From: Bartolomeo Stellato Date: Thu, 30 Aug 2018 15:40:04 -0400 Subject: Started adding julia languageserver --- autoload/ale/julia.vim | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 autoload/ale/julia.vim (limited to 'autoload') diff --git a/autoload/ale/julia.vim b/autoload/ale/julia.vim new file mode 100644 index 00000000..a6c0ee4a --- /dev/null +++ b/autoload/ale/julia.vim @@ -0,0 +1,21 @@ +" Set just so tests can override it. +let g:__ale_julia_project_filenames = ['.git/HEAD'] +function! ale#julia#FindProjectRoot(buffer) abort + for l:project_filename in g:__ale_julia_project_filenames + let l:full_path = ale#path#FindNearestFile(a:buffer, l:project_filename) + + if !empty(l:full_path) + let l:path = fnamemodify(l:full_path, ':h') + + " Correct .git path detection. + if fnamemodify(l:path, ':t') is# '.git' + let l:path = fnamemodify(l:path, ':h') + endif + + return l:path + endif + endfor + + return '' +endfunction + -- cgit v1.2.3