summaryrefslogtreecommitdiff
path: root/ale_linters/markdown/marksman.vim
blob: b23f0e050c86da1ed952c07dc05cb3cc4ab7b5c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
" Author: Peter Benjamin <petermbenjamin@gmail.com>
" Description: Write Markdown with code assist and intelligence in the comfort of your favourite editor.

call ale#Set('markdown_marksman_executable', 'marksman')

function! ale_linters#markdown#marksman#GetCommand(buffer) abort
    return '%e server'
endfunction

function! ale_linters#markdown#marksman#GetProjectRoot(buffer) abort
    " Find nearest .marksman.toml
    let l:marksman_toml = ale#path#FindNearestFile(a:buffer, '.marksman.toml')

    if !empty(l:marksman_toml)
        return fnamemodify(l:marksman_toml, ':h')
    endif

    " Find nearest .git/ directory
    let l:project_root = finddir('.git/..', expand('#' . a:buffer . '...').';')

    if !empty(l:project_root)
        return l:project_root
    endif

    return ''
endfunction

call ale#linter#Define('markdown', {
\   'name': 'marksman',
\   'lsp': 'stdio',
\   'executable': {b -> ale#Var(b, 'markdown_marksman_executable')},
\   'command': function('ale_linters#markdown#marksman#GetCommand'),
\   'project_root': function('ale_linters#markdown#marksman#GetProjectRoot'),
\   'initialization_options': {},
\})