From 143af2b9fd78dbfd5ee8ae727a522dd2dcc79b61 Mon Sep 17 00:00:00 2001 From: w0rp Date: Mon, 20 May 2019 19:57:08 +0100 Subject: Fix #2421 - Use compile_commands.json in build dirs to find roots --- ale_linters/objc/clangd.vim | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'ale_linters/objc/clangd.vim') diff --git a/ale_linters/objc/clangd.vim b/ale_linters/objc/clangd.vim index ab52fec3..318d85b5 100644 --- a/ale_linters/objc/clangd.vim +++ b/ale_linters/objc/clangd.vim @@ -4,12 +4,6 @@ call ale#Set('objc_clangd_executable', 'clangd') call ale#Set('objc_clangd_options', '') -function! ale_linters#objc#clangd#GetProjectRoot(buffer) abort - let l:project_root = ale#path#FindNearestFile(a:buffer, 'compile_commands.json') - - return !empty(l:project_root) ? fnamemodify(l:project_root, ':h') : '' -endfunction - function! ale_linters#objc#clangd#GetCommand(buffer) abort return '%e' . ale#Pad(ale#Var(a:buffer, 'objc_clangd_options')) endfunction @@ -19,5 +13,5 @@ call ale#linter#Define('objc', { \ 'lsp': 'stdio', \ 'executable': {b -> ale#Var(b, 'objc_clangd_executable')}, \ 'command': function('ale_linters#objc#clangd#GetCommand'), -\ 'project_root': function('ale_linters#objc#clangd#GetProjectRoot'), +\ 'project_root': function('ale#c#FindProjectRoot'), \}) -- cgit v1.2.3