summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2023-06-14patch 9.0.1632: not all cabal config files are recognizedv9.0.1632Marcin Szamotulski
Problem: Not all cabal config files are recognized. Solution: Add a couple of patterns. (Marcin Szamotulski, closes #12463)
2023-06-14patch 9.0.1629: having utf16idx() rounding up is inconvenientv9.0.1629Yegappan Lakshmanan
Problem: Having utf16idx() rounding up is inconvenient. Solution: Make utf16idx() round down. (Yegappan Lakshmanan, closes #12523)
2023-06-13patch 9.0.1628: syntax tests fail on FreeBSDv9.0.1628K.Takata
Problem: Syntax tests fail on FreeBSD. Solution: Pass the Vim executable path with VIMPROG. (Ken Takata, closes #12535) Adjust the paths.
2023-06-11patch 9.0.1627: no generic mechanism to test syntax pluginsv9.0.1627Bram Moolenaar
Problem: No generic mechanism to test syntax plugins. Solution: Add a syntax plugin test mechanism, using screendumps. Add a simple test for "c".
2023-06-10Update runtime filesBram Moolenaar
2023-06-09patch 9.0.1623: the program to filetype translation is not exportedv9.0.1623Bram Moolenaar
Problem: The program to filetype translation is not exported. Solution: Export Exe2filetype().
2023-06-09patch 9.0.1622: filetype name t32 is a bit obscurev9.0.1622Christoph Sax
Problem: Filetype name t32 is a bit obscure. Solution: Rename t32 to trace32. (Christoph Sax, closes #12512)
2023-06-08patch 9.0.1620: Nix files are not recognized from the hashbang linev9.0.1620Bram Moolenaar
Problem: Nix files are not recognized from the hashbang line. Solution: Add a hashbang check. (issue #12507)
2023-06-08patch 9.0.1618: Trace32 files are not recognizedv9.0.1618Christoph Sax
Problem: Trace32 files are not recognized. Solution: Add patterns for the t32 filetype. (Christoph Sax, closes #12505)
2023-06-08patch 9.0.1617: charidx() result is not consistent with byteidx()v9.0.1617Yegappan Lakshmanan
Problem: charidx() and utf16idx() result is not consistent with byteidx(). Solution: When the index is equal to the length of the text return the lenght of the text instead of -1. (Yegappan Lakshmanan, closes #12503)
2023-06-07patch 9.0.1615: URL shortcut files are not recognizedv9.0.1615ObserverOfTime
Problem: URL shortcut files are not recognized. Solution: Add a pattern for URL shortcut files. (closes #12474)
2023-06-03patch 9.0.1601: filetype detection fails for *.conf file without commentsv9.0.1601zeertzjq
Problem: Filetype detection fails for *.conf file without comments. (Dmitrii Tcyganok) Solution: Use "conf" filetype as a fallback for an empty .conf file. (closes #12487, closes #12483)
2023-05-31patch 9.0.1594: some internal error messages are translatedv9.0.1594RestorerZ
Problem: Some internal error messages are translated. Solution: Consistently do not translate internal error messages. (closes #12459)
2023-05-29patch 9.0.1591: some "gomod" files are not recognizedv9.0.1591Omar El Halabi
Problem: Some "gomod" files are not recognized. Solution: Check for "go.mod" file name before checking out the contents. (Omar El Halabi, closes #12462)
2023-05-28patch 9.0.1587: Corn config files are not recognizedv9.0.1587Jake Stanger
Problem: Corn config files are not recognized. Solution: Add a pattern for Corn config files. (Jake Stanger, closes #12449)
2023-05-27patch 9.0.1584: not all meson files are recognizedv9.0.1584Bram Moolenaar
Problem: Not all meson files are recognized. Solution: Add "meson.options". (Liam Beguin, closes #12444)
2023-05-26patch 9.0.1580: CI: indent test hangs on FreeBSDv9.0.1580ichizok
Problem: CI: indent test hangs on FreeBSD. Solution: Set 'nomore' when running the indent tests. (Ozaki Kiichi, closes #12446)
2023-05-24patch 9.0.1576: users may not know what to do with an internal errorv9.0.1576Bram Moolenaar
Problem: Users may not know what to do with an internal error. Solution: Add a translated message with instructions.
2023-05-18patch 9.0.1565: json lines files are not recognizedv9.0.1565Bram Moolenaar
Problem: Json lines files are not recognized. Solution: Add a pattern to detect "jsonl" files. (issue #7520)
2023-05-14patch 9.0.1557: test failures for unreachable codev9.0.1557Bram Moolenaar
Problem: Test failures for unreachable code. Solution: Add a test override to ignore unreachable code.
2023-05-14Update runtime filesBram Moolenaar
2023-05-13patch 9.0.1549: USD filetype is not recognizedv9.0.1549Colin Kennedy
Problem: USD filetype is not recognized. Solution: Add patterns for USD filetype. (Colin Kennedy, closes #12370)
2023-05-12patch 9.0.1546: some commands for opening a file don't use 'switchbuf'v9.0.1546Yegappan Lakshmanan
Problem: Some commands for opening a file don't use 'switchbuf'. Solution: Use 'switchbuf' for more commands. (Yegappan Lakshmanan, closes #12383, closes #12381)
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-05-10patch 9.0.1537: message for opening the cmdline window is not translatedv9.0.1537Bram Moolenaar
Problem: Message for opening the cmdline window is not translated. Solution: Add gettext() and scan the defaults script for text to be translated. (closes #12371)
2023-05-06patch 9.0.1519: global 'filetype' is set when detected from file contentv9.0.1519Bram Moolenaar
Problem: Global 'filetype' is set when it is detected from the file content. Solution: Set the local 'filetype' option value.
2023-05-06patch 9.0.1516: cannot use special keys in <Cmd> mappingv9.0.1516zeertzjq
Problem: Cannot use special keys in <Cmd> mapping. Solution: Do allow for special keys in <Cmd> and <ScriptCmd> mappings. (closes #12326)
2023-05-06patch 9.0.1515: reverse() does not work for a Stringv9.0.1515Yegappan Lakshmanan
Problem: reverse() does not work for a String. Solution: Implement reverse() for a String. (Yegappan Lakshmanan, closes #12179)
2023-05-01patch 9.0.1504: no error when calling remote_startserver("")v9.0.1504h-east
Problem: No error when calling remote_startserver() with an empty string. Solution: Give an error for an empty string. (Hirohito Higashi, closes #12327)
2023-04-30patch 9.0.1503: Luau files are not recognizedv9.0.1503Amaan Qureshi
Problem: Luau files are not recognized. Solution: Add a patter for Luau files. (Amaan Qureshi, closes #12317)
2023-04-24patch 9.0.1485: no functions for converting from/to UTF-16 indexv9.0.1485Christian Brabandt
Problem: no functions for converting from/to UTF-16 index. Solution: Add UTF-16 flag to existing funtions and add strutf16len() and utf16idx(). (Yegappan Lakshmanan, closes #12216)
2023-04-23patch 9.0.1481: decrypting with libsodium may fail if the library changesv9.0.1481Christian Brabandt
Problem: Decrypting with libsodium may fail if the library changes. Solution: Add parameters used to the encrypted file header. (Christian Brabandt, closes #12279)
2023-04-22Update runtime filesBram Moolenaar
2023-04-22patch 9.0.1478: filetypes for *.v files not detected properlyv9.0.1478Turiiya
Problem: Filetypes for *.v files not detected properly. Solution: Use the file contents to detect the filetype. (Turiiya, closes #12281)
2023-04-22patch 9.0.1476: lines put in non-current window are not displayedv9.0.1476Bram Moolenaar
Problem: Lines put in non-current window are not displayed. (Marius Gedminas) Solution: Don't increment the topline when inserting just above it. (closes #12212)
2023-04-18patch 9.0.1467: Jenkinsfiles are not recognized as groovyv9.0.1467dundargoc
Problem: Jenkinsfiles are not recognized as groovy. Solution: Add a pattern for Jenkinsfiles. (closes #12236)
2023-04-17patch 9.0.1464: strace filetype detection is expensivev9.0.1464Federico Mengozzi
Problem: Strace filetype detection is expensive. Solution: Match with a cheap pattern first. (Federico Mengozzi, closes #12220)
2023-04-15patch 9.0.1455: C++ 20 modules are not recognizedv9.0.1455Ben Jackson
Problem: C++ 20 modules are not recognized. Solution: Add patterns to recognize C++ 20 modules as "cpp". (Ben Jackson, closes #12261)
2023-04-02patch 9.0.1438: .fs files are falsely recognized as forth filesv9.0.1438Johan Kotlinski
Problem: .fs files are falsely recognized as forth files. Solution: Check 100 lines for something that looks like forth. (Johan Kotlinski, closes #12219, closes #11988)
2023-03-28patch 9.0.1430: Livebook files are not recognizedv9.0.1430Mathias Jean Johansen
Problem: Livebook files are not recognized. Solution: Add a pattern for Livebook files. (Mathias Jean Johansen, closes #12203)
2023-03-23patch 9.0.1425: "wat" and "wast" files are one filetypev9.0.1425Amaan Qureshi
Problem: "wat" and "wast" files are one filetype. Solution: Add a separate filetype for "wat" files. (Amaan Qureshi, closes #12165)
2023-03-21patch 9.0.1423: WebAssembly Interface Type files are not recognizedv9.0.1423Amaan Qureshi
Problem: WebAssembly Interface Type files are not recognized. Solution: Add a pattern for WIT files. (Amaan Qureshi, closes #12173)
2023-03-21patch 9.0.1422: Sage files are not recognizedv9.0.1422Amaan Qureshi
Problem: Sage files are not recognized. Solution: Add a pattern for Sage files. (Amaan Qureshi, closes #12176)
2023-03-21patch 9.0.1421: Nu files are not recognizedv9.0.1421Amaan Qureshi
Problem: Nu files are not recognized. Solution: Add a pattern for Nu files. (Amaan Qureshi, closes #12172)
2023-03-21patch 9.0.1419: Lean files are not recognizedv9.0.1419Amaan Qureshi
Problem: Lean files are not recognized. Solution: Add a pattern for Lean files. (Amaan Qureshi, closes #12177)
2023-03-19patch 9.0.1417: ESDL files are not recognizedv9.0.1417Amaan Qureshi
Problem: ESDL files are not recognized. Solution: Add a pattern for ESDL files. (Amaan Qureshi, closes #12174)
2023-03-19patch 9.0.1415: Crystal files are not recognizedv9.0.1415Amaan Qureshi
Problem: Crystal files are not recognized. Solution: Add a pattern for Crystal files. (Amaan Qureshi, closes #12175)
2023-03-17patch 9.0.1412: Pony files are not recognizedv9.0.1412Amaan Qureshi
Problem: Pony files are not recognized. Solution: Add a pattern for Pony files. (Amaan Qureshi, closes #12155)
2023-03-16patch 9.0.1411: accuracy of profiling is not optimalv9.0.1411Ernie Rael
Problem: Accuracy of profiling is not optimal. Solution: Use CLOCK_MONOTONIC if possible. (Ernie Rael, closes #12129)
2023-03-16patch 9.0.1410: MacOS: sed fails on .po filesv9.0.1410Yee Cheng Chin
Problem: MacOS: sed fails on .po files. Solution: Set $LANG to "C". (Yee Cheng Chin, closes #12153)