diff options
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/ale/util.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugin/ale/util.vim b/plugin/ale/util.vim index 64dd59dc..d3f44573 100644 --- a/plugin/ale/util.vim +++ b/plugin/ale/util.vim @@ -24,3 +24,9 @@ let g:ale#util#stdin_wrapper = s:FindWrapperScript() function! ale#util#GetLineCount(buffer) return len(getbufline(a:buffer, 1, '$')) endfunction + +" Given a buffer and a filename, find the nearest file by searching upwards +" through the paths relative to the given buffer. +function! ale#util#FindNearestFile(buffer, filename) + return findfile(a:filename, fnamemodify(bufname(a:buffer), ':p') . ';') +endfunction |