summaryrefslogtreecommitdiffstats
path: root/runtime/doc/filetype.txt
AgeCommit message (Collapse)Author
2024-06-19patch 9.1.0505: filetype: Faust files are not recognizedv9.1.0505PowerUser64
Problem: filetype: Faust files are not recognized Solution: Detect '*.lib' files as Faust filetype, add detection for '*.dsp' files (Faust or Make), remove '*.lib' from Cobol filetype (PowerUser64) closes: #14894 Signed-off-by: PowerUser64 <blake@blakenorth.net> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-05-24patch 9.1.0442: hare runtime files outdatedv9.1.0442Amelia Clarke
Problem: hare runtime files outdated Solution: runtime(hare): update hare.vim to match upstream (Amelia Clarke) closes: #14836 Signed-off-by: Amelia Clarke <selene@perilune.dev> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-05-21runtime(zig): refactor zig ftplugin, remove auto formatTiseno
Refactored zig ftplugin, removed upstream comment, aucmd and auto formatting support. Updated documentation for zig configuration settings and added new maintainer. closes: #13803 Signed-off-by: Tiseno <mathias.lindgren@stabelo.se> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-05-20runtime(arduino): Add Arduino ftplugin and indent files (#14811)K.Takata
We already have Arduino syntax file, but we didn't have ftplugin and indent files. This commit adds a basic ftplugin file and a basic indent file. Both of them are derived from {ftplugin,indent}/c.vim. Signed-off-by: Ken Takata <kentkt@csc.jp> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-04-18runtime(java): Support "g:ftplugin_java_source_path" with archived filesAliaksei Budavei
Also, document for "g:ftplugin_java_source_path" its current modification of the local value of the 'path' option. closes: #14570 Signed-off-by: Aliaksei Budavei <0x000c70@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-04-09patch 9.1.0282: Several small issues in doc and testsv9.1.0283Christian Brabandt
Problem: Wrong doc style for pandoc syntax description, Test_diff_eob_halfpage() may fail depending on screen size, using braces in highlight.c when not necessary Solution: Fix pandoc documentation, make sure the window for the test has 7 lines, remove the braces. 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-03runtime(doc): sort filetype.txt in the alphabetical order (#14395)K.Takata
Signed-off-by: Ken Takata <kentkt@csc.jp> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-02-25runtime(doc): fix inconsistent indent (#14089)zeertzjq
Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-02-14runtime(asciidoc): include basic ftpluginLuca Saccarola
closes: #13873 Signed-off-by: Luca Saccarola <github.e41mv@aleeas.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>
2024-01-02patch 9.1.0000: Vim 9.1 releasev9.1.0000v9.1.0Christian Brabandt
Problem: Need a new release Solution: Release Vim 9.1 Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-01-01runtime(dist/ft): improve filetype detection for *.v (V/Verilog/Coq)Christian Brabandt
Patch provided by Dan Alt closes: #13793 Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-12-25runtime(r): Update R runtime files and docs (#13757)Jakson Alves de Aquino
* Update R runtime files - Fix indentation issue with ggplot(). - Setlocal autoindent in indent/r.vim. - New syntax option: rmd_include_latex. - Clear syn iskeyword to recognize _ as keyword. - Document some options. - remove the test has("patch-7.4.1142") - Update changed date of doc files Signed-off-by: Jakson Alves de Aquino <jalvesaq@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org
2023-12-10runtime(json): Add json formating plugin (Issue #11426) (#11506)Maxim Kim
related: #11426 Signed-off-by: Maxim Kim <habamax@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-12-05runtime(fortran): update syntax and ftpluginsAjit-Thakkar
closes: #13629 Signed-off-by: Ajit-Thakkar <142174202+Ajit-Thakkar@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-10-02runtime(doc): fix typos.h_east
* Fix typo in document (Related: #12516) * Fix E1363 duplication * Fix one more typo. Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-09-11runtime(doc): Add g:c_syntax_for_h to filetype-overrule docsDoug Kearns
closes: #13074 Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-09-06runtime: don't execute external commands when loading ftpluginsChristian Brabandt
This is a followup to 816fbcc262687b81fc46f82f7bbeb1453addfe0c (patch 9.0.1833: [security] runtime file fixes) It basically disables that external commands are run on loading of the filetype plugin, **unless** the user has set the `g:plugin_exec = 1` global variable in their configuration or for a specific filetype the variable g:<filetype>_exec=1. There are a few more plugins, that may execute system commands like debchangelog, gitcommit, sh, racket, zsh, ps1 but those do at least do not run those commands by default during loading of the filetype plugin (there the command is mostly run as convenience for auto-completion or to provide documentation lookup). closes: #13034 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Tim Pope <vim@tpope.org>
2023-08-20patch 9.0.1773: cannot distinguish Forth and Fortran *.f filesv9.0.1773Doug Kearns
Problem: cannot distinguish Forth and Fortran *.f files Solution: Add Filetype detection Code Also add *.4th as a Forth filetype closes: #12251 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Doug Kearns <dougkearns@gmail.com>
2023-08-09Fix alignment in filetype.txt (#12618)zeertzjq
There are three spaces because the "<" is concealed.
2023-05-14Update runtime filesBram Moolenaar
2023-05-10patch 9.0.1539: typst filetype is not recognizedv9.0.1539Gaetan Lepage
Problem: Typst filetype is not recognized. Solution: Distinguish between sql and typst. (Gaetan Lepage, closes #12363)
2023-02-20Update runtime files.Bram Moolenaar
2022-11-09Update runtime filesBram Moolenaar
2022-10-17patch 9.0.0779: lsl and lm3 file extensions are not recognizedv9.0.0779Doug Kearns
Problem: lsl and lm3 file extensions are not recognized. Solution: Add *.lsl and *.lm3 patterns. (Doug Kearns, closes #11384)
2022-07-01Update runtime filesBram Moolenaar
2022-06-30patch 9.0.0012: signature files not detected properlyv9.0.0012Bram Moolenaar
Problem: Signature files not detected properly. Solution: Add a function to better detect signature files. (Doug Kearns)
2022-06-29patch 9.0.0006: not all Visual Basic files are recognizedv9.0.0006Bram Moolenaar
Problem: Not all Visual Basic files are recognized. Solution: Change detection of *.cls files. (Doug Kearns)
2022-06-28release version 9.0v9.0.0000Bram Moolenaar
Problem: About time to release Vim 9.0. Solution: Update the version number everywhere.
2022-06-26Update runtime filesBram Moolenaar
2022-06-17Update runtime filesBram Moolenaar
2022-04-27Update runtime filesBram Moolenaar
2022-04-18Update runtime filesBram Moolenaar
2022-04-13patch 8.2.4747: no filetype override for .sys filesv8.2.4747KnoP-01
Problem: No filetype override for .sys files. Solution: Add g:filetype_sys. (Patrick Meiser-Knosowski, closes #10181)
2022-04-09patch 8.2.4720: ABB Rapid files are not recognized properlyKnoP-01
Problem: ABB Rapid files are not recognized properly. Solution: Add checks for ABB Rapid files. (Patrick Meiser-Knosowski, closes #10104)
2022-04-09patch 8.2.0003: Build file dependencies are incompletev8.2.4720Bram Moolenaar
Problem: Build file dependencies are incomplete. Solution: Fix the dependencies. (Ken Takata, closes #5356)
2022-04-08Update runtime filesBram Moolenaar
2022-02-04Update runtime files.Bram Moolenaar
2022-01-23Update runtime filesBram Moolenaar
2021-12-30Update runtime filesBram Moolenaar
2021-12-05Update runtime filesBram Moolenaar
2021-11-27patch 8.2.3686: filetype detection often mixes up Forth and F#v8.2.3686Bram Moolenaar
Problem: Filetype detection often mixes up Forth and F#. Solution: Add a function to inspect the file contents. (Doug Kearns)
2021-10-04Update runtime filesBram Moolenaar
2021-09-21Update runtime filesBram Moolenaar
2021-09-03patch 8.2.3399: Octave files are not recognizedv8.2.3399Bram Moolenaar
Problem: Octave files are not recognized. Solution: Detect Octave files. (Doug Kearns)
2021-06-13Update runtime filesBram Moolenaar
2021-03-13Update runtime files.Bram Moolenaar
2021-01-25Update runtime files.Bram Moolenaar
2021-01-18Update runtime files.Bram Moolenaar