neovim/runtime/compiler/typst.vim
Christian Clason a0fd51c1e2 vim-patch:1cc4cae: runtime(typst): Add typst runtime files
closes: vim/vim#15234

1cc4cae961

Co-authored-by: Gregory Anders <greg@gpanders.com>
2024-07-16 09:43:57 +02:00

16 lines
455 B
VimL

" Vim compiler file
" Language: Typst
" Maintainer: Gregory Anders
" Last Change: 2024-07-14
" Based on: https://github.com/kaarmu/typst.vim
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']
execute 'CompilerSet makeprg=' . join(s:makeprg, '\ ')