diff options
| author | Muntasir Mahmud <muntasir.joypurhat@gmail.com> | 2025-03-12 14:00:00 +0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-12 08:00:00 +0000 |
| commit | 02ed5dc088e3d90f35c396586c60a963d56ec870 (patch) | |
| tree | 8dd2c1fb2a8260fcf0af75706ed82927b6cd4ac7 /runtime/doc | |
| parent | a94a2927d00a80e5e00a4f358db581c7d2a7e525 (diff) | |
| download | rneovim-02ed5dc088e3d90f35c396586c60a963d56ec870.tar.gz rneovim-02ed5dc088e3d90f35c396586c60a963d56ec870.tar.bz2 rneovim-02ed5dc088e3d90f35c396586c60a963d56ec870.zip | |
vim-patch:2347330: runtime(compiler): allow customizing exe and args for tsc (#32853)
closes: vim/vim#16853
https://github.com/vim/vim/commit/23473303b78d598a0f3c2f9370e011045093d3bd
Co-authored-by: Konfekt <Konfekt@users.noreply.github.com>
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/quickfix.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt index 7aeb494437..c2a8c15b10 100644 --- a/runtime/doc/quickfix.txt +++ b/runtime/doc/quickfix.txt @@ -1681,6 +1681,13 @@ shells and OSes and also does not allow to use other available TeX options, if any. If your TeX doesn't support "-interaction=nonstopmode", please report it with different means to express \nonstopmode from the command line. +TSC COMPILER *compiler-tsc* + +The executable and compiler options can be added to 'makeprg' by setting the +b/g:tsc_makeprg variable. For example: > + + let b:tsc_makeprg = "npx tsc --noEmit" + TYPST COMPILER *compiler-typst* Vim includes a compiler plugin for Typst files. This compiler is enabled |