diff options
| author | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-02 18:44:22 +0300 |
|---|---|---|
| committer | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-02 18:44:22 +0300 |
| commit | 934382c8a1ce738589dee9ee0f14e1cec812770e (patch) | |
| tree | f13715762efd06518f8aec3a2bf39ac8a615987f /uvim/runtime/compiler/context.vim | |
| parent | 0b24459ac12b6cf9fd5a401d647796ca254a8fa8 (diff) | |
| parent | 7088926316d8d4a7572a242d0765e99adfc8b083 (diff) | |
| download | Project-Tick-934382c8a1ce738589dee9ee0f14e1cec812770e.tar.gz Project-Tick-934382c8a1ce738589dee9ee0f14e1cec812770e.zip | |
Add 'uvim/' from commit '7088926316d8d4a7572a242d0765e99adfc8b083'
git-subtree-dir: uvim
git-subtree-mainline: 0b24459ac12b6cf9fd5a401d647796ca254a8fa8
git-subtree-split: 7088926316d8d4a7572a242d0765e99adfc8b083
Diffstat (limited to 'uvim/runtime/compiler/context.vim')
| -rw-r--r-- | uvim/runtime/compiler/context.vim | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/uvim/runtime/compiler/context.vim b/uvim/runtime/compiler/context.vim new file mode 100644 index 0000000000..82106ad75f --- /dev/null +++ b/uvim/runtime/compiler/context.vim @@ -0,0 +1,46 @@ +vim9script + +# Language: ConTeXt typesetting engine +# Maintainer: Nicola Vitacolonna <nvitacolonna@gmail.com> +# Former Maintainers: Nikolai Weibull <now@bitwi.se> +# Contributors: Enno Nagel +# Last Change: 2026 Jan 10 + +if exists("g:current_compiler") + finish +endif + +import autoload '../autoload/context.vim' + +g:current_compiler = 'context' + +if get(b:, 'context_ignore_makefile', get(g:, 'context_ignore_makefile', 0)) || + (!filereadable('Makefile') && !filereadable('makefile')) + var makeprg = join(context.ConTeXtCmd(shellescape(expand('%:p:t'))), ' ') + execute 'CompilerSet makeprg=' .. escape(makeprg, ' ') +else + g:current_compiler = 'make' +endif + +const context_errorformat = join([ + "%-Popen source%.%#> %f", + "%-Qclose source%.%#> %f", + "%-Popen source%.%#name '%f'", + "%-Qclose source%.%#name '%f'", + "%E! %m", + "%Ztex %trror%.%#error on line %l in file %f", + "%Elua %trror%.%#error on line %l in file %f:", + "%+Emetapost %#> error: %#", + "%Emetafun%.%#error: %m", + "%-C %#", + "%C! %m", + "%Z%.%#[ctxlua]:%l:%m", + "%+C<*> %.%#", + "%-C%.%#", + "%Z...%m", + "%-Zno-error", + "%-G%.%#"], ",") + +execute 'CompilerSet errorformat=' .. escape(context_errorformat, ' ') + +# vim: sw=2 fdm=marker |
