summaryrefslogtreecommitdiffstats
path: root/runtime/compiler
AgeCommit message (Collapse)Author
2024-04-15runtime(doc): document pandoc compiler and enable configuring argumentsKonfekt
closes: #14550 Signed-off-by: Konfekt <Konfekt@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-04-14patch 9.1.0326: filetype: some requirements files are not recognizedv9.1.0326Wu, Zhenyu
Problem: filetype: some requirements files are not recognized Solution: Detect '*-requirements.txt', 'constraints.txt', 'requirements.in', 'requirements/*.txt' and 'requires/*.txt' as requirements filetype, include pip compiler, include requirements filetype and syntax plugin (Wu, Zhenyu, @raimon49) closes: #14379 Co-authored-by: raimon <raimon49@hotmail.com> Signed-off-by: Wu, Zhenyu <wuzhenyu@ustc.edu> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-04-14compiler(rime_deployer): include new compiler, use it for '*.custom.yaml' ↵wzy
files (#14460) Signed-off-by: Wu, Zhenyu <wuzhenyu@ustc.edu> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-04-14runtime(vim): don't set compiler, update a comment for vimdoc compiler (#14532)Shane-XB-Qian
Signed-off-by: shane.xb.qian <shane.qian@foxmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-04-11runtime(compiler): add vimdocWu, Zhenyu
closes: #14459 https://github.com/google/vimdoc generates vim help files from vimscript files Signed-off-by: Wu, Zhenyu <wuzhenyu@ustc.edu> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-04-09runtime(compiler): fix inaccuracies in pandoc compiler (#14467)Enno
as kindly pointed out by @Freed-Wu Signed-off-by: Enno <Konfekt@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-04-08patch 9.1.0276: No pandoc syntax supportv9.1.0276Wu, Zhenyu
Problem: No pandoc syntax support Solution: Add pandoc syntax and compiler plugins (Wu, Zhenyu, Konfekt) closes: #14389 Co-authored-by: Konfekt <Konfekt@users.noreply.github.com> Signed-off-by: Wu, Zhenyu <wuzhenyu@ustc.edu> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-04-05runtime: fix :compiler leaving behind a g:makeprg variable (#14414)zeertzjq
Problem: :compiler may leave behind a g:makeprg variable after #14336. Solution: Use a script local variable. Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-04-05runtime: Remove more fallback :CompilerSet definitions from compiler plugins ↵Yinzuo Jiang
(#14413) Continue with #14399 Signed-off-by: jiangyinzuo <jiangyinzuo@foxmail.com> Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-04-04runtime: Remove fallback :CompilerSet definition from compiler pluginsDoug Kearns
The :CompilerSet command was added in version Vim 6.4 which was released twenty years ago. Other runtime files do not support versions of that vintage so it is reasonable to remove this fallback command definition now. closes: #14399 Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-03-31runtime(compilers): ensure compiler! sets global options (#14336)Enno
Previously some options were only set locally by &l:makeprg/errorformat This suffices for :compiler (without a trailing bang) but falls short for :compiler! that sets &g:makeprg/errorformat as well Also apply kind suggestions by @dkearns and @lifepillar Signed-off-by: Konfekt <Konfekt@users.noreply.github.com> Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-03-24runtime(compiler): update errorformat for dot and neato compiler (#14257)Enno
* add errorformat for dot compiler * add errorformat for neato compiler Signed-off-by: Konfekt <Konfekt@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-01-05patch 9.1.0013: Modula2 filetype support lackingv9.1.0013Doug Kearns
Problem: Modula2 filetype support lacking Solution: Improve the Modula-2 runtime support, add additional modula2 dialects, add compiler plugin, update syntax highlighting, include syntax tests, update Makefiles (Doug Kearns) closes: #6796 closes: #8115 Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Benjamin Kowarsch <trijezdci@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-12-27runtime(context): update ConTeXt keywords and other minor fixes (#13778)Lifepillar
Update to the ConTeXt runtime files. Changes: 1. shared syntax files updated with `mtxrun --script interface --vim` using the latest ConTeXt LMTX. 2. fixed reference to `make` tag in the help file. 3. added `keepend` to mitigate issues with embedded Lua syntax (see below). 4. the latest revision date of each ConTeXt runtime file has been updated to the date of this commit. The issue about embedded Lua was reported by a user: >Take the following valid ConTeXt file: > \starttext > \ctxlua{context("Text generated from Lua.")} > \ctxlua{context("Another text generated from Lua.")} > \stoptext >On my Vim installation (including when I start Vim with `--clean`), the >closing bracket and curly braces on line 2 are highlighted red and the >syntax highlighting after that is off. >I was trying to dig a little bit into what was going on, using the >`synID()` and `synIDattr()` functions. It appears that the closing >bracket on line 2 is matched as a `luaParentError` instead of the end >of the `luaParen` region. Therefore, the `luaParen` region continues >all the way to the end of the file. The closing curly brace on line >2 is matched as a `luaError`, the 2nd `\ctxlua` on line 3 as >`luaParen`, etc. >This issue doesn't occur in a plain Lua file, where the closing bracket >is correctly matched as the end of the `luaParen` region. So it seems >that something goes wrong when the Lua syntax file is included in the >ConTeXt one. By adding `keepend`, the right parenthesis for some reason is still highlighted as a `luaParenError`, but at least the right curly brace should correctly end the Lua block. From what I've seen, I think it is very difficult to embed Lua syntax properly without help from the Lua syntax file (that is, without patching it). It has global rules such as: syn match luaParenError ")" syn match luaError "}" which make it difficult, if not impossible, to contain Lua syntax without `keepend` (and its limitations). Signed-off-by: Lifepillar <lifepillar@lifepillar.me> Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-09-12runtime(rust): sync rust runtime files with upstream (#13075)Gregory Anders
Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-08-13Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)Christian Brabandt
* Dedicate upcoming Vim 9.1 to Bram Also replace in a few more places Brams email address and mention new maintainers. * Remove Bram from any Maintainer role * runtime: Align Header * it's mailing list not mailinglist
2022-12-06Update runtime filesBram Moolenaar
2022-09-27Update runtime filesBram Moolenaar
2022-08-30Update runtime filesBram Moolenaar
2022-08-15Update runtime filesBram Moolenaar
2022-06-17Update runtime filesBram Moolenaar
2022-06-14Update runtime filesBram Moolenaar
2022-05-12Update runtime files and translationsBram Moolenaar
2022-03-08Update runtime filesBram Moolenaar
2021-09-09Update runtime filesBram Moolenaar
2021-08-14Update runtime filesBram Moolenaar
2021-07-28Update runtime filesBram Moolenaar
2021-04-17Update runtime files.Bram Moolenaar
2021-04-07Update runtime filesBram Moolenaar
2021-02-27Update runtime files.Bram Moolenaar
2021-01-25Update runtime files.Bram Moolenaar
2021-01-02Update runtime files.Bram Moolenaar
2020-11-29Update runtime filesBram Moolenaar
2020-09-28Update runtime files.Bram Moolenaar
2020-09-07Update runtime files.Bram Moolenaar
2020-08-30Update runtime files.Bram Moolenaar
2020-08-15Update runtime files.Bram Moolenaar
2020-08-09patch 8.2.1410: adding compiler plugin requires test changev8.2.1410Bram Moolenaar
Problem: Adding compiler plugin requires test change. Solution: Include compiler plugin and adjust test.
2020-05-26Update runtime filesBram Moolenaar
2019-07-31Update runtime files.Bram Moolenaar
2019-07-13Update runtime filesBram Moolenaar
2019-07-04Update runtime filesBram Moolenaar
2019-01-17Update runtime files.Bram Moolenaar
2018-09-02Update runtime files.Bram Moolenaar
2017-04-09Update runtime files.Bram Moolenaar
2017-03-21Update runtime files. Add Rust support.Bram Moolenaar
2017-03-05Runtime file updates.Bram Moolenaar
2016-12-01Updated runtime files.Bram Moolenaar
2016-11-17Updated runtime files.Bram Moolenaar
2016-10-23Updated runtime files.Bram Moolenaar