summaryrefslogtreecommitdiff
path: root/uvim/runtime/compiler/typst.mnv
blob: cfa33d5bc0025fffbefa0cdc6009588633e228d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
" MNV compiler file
" Language:    Typst
" Previous Maintainer:  Luca Saccarola <github.e41mv@aleeas.com>
" Maintainer:  This runtime file is looking for a new maintainer.
" Based On:    https://github.com/kaarmu/typst.mnv
" Last Change: 2025 Aug 05

if exists('current_compiler')
    finish
endif
let current_compiler = get(g:, 'typst_cmd', 'typst')

" With `--diagnostic-format` we can use the default errorformat
let s:makeprg = [current_compiler, 'compile', '--diagnostic-format', 'short', '%:S']

" CompilerSet makeprg=typst
execute 'CompilerSet makeprg=' . join(s:makeprg, '\ ')