summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorD. Ben Knoble <ben.knoble+github@gmail.com>2021-07-19 21:02:23 -0400
committerGitHub <noreply@github.com>2021-07-20 10:02:23 +0900
commit651038b6017c2d2bd7027076ff2838e7cc4a078e (patch)
tree42188a252e3d4dcb348f0f3cd9588006ebe10200 /autoload
parenta6719c2d4fa0d4f5f2cdbaf8ece8de6c4faf1295 (diff)
downloadale-651038b6017c2d2bd7027076ff2838e7cc4a078e.zip
racket: support racket-langserver lsp (#3808)
* racket: support racket-langserver lsp * racket-langserver: find highest dir with init.rkt * autoload/ale/racket: re-indent to 4 spaces * racket: lint: sort supported tools * racket: lint: function! This is _not_ needed anymore, but the lint wants it. See :help E127 * racket-langserver: do not use new dict format * racket: lint: use snake_case * add tests for racket-langserver * racket-langserver tests: correct result values
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/racket.vim12
1 files changed, 12 insertions, 0 deletions
diff --git a/autoload/ale/racket.vim b/autoload/ale/racket.vim
new file mode 100644
index 00000000..ff896108
--- /dev/null
+++ b/autoload/ale/racket.vim
@@ -0,0 +1,12 @@
+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