summaryrefslogtreecommitdiff
path: root/runtime
Commit message (Collapse)AuthorAgeFilesLines
* patch 9.0.1557: test failures for unreachable codev9.0.1557Bram Moolenaar2023-05-141-2/+8
| | | | | Problem: Test failures for unreachable code. Solution: Add a test override to ignore unreachable code.
* Update runtime filesBram Moolenaar2023-05-1435-218/+565
|
* patch 9.0.1549: USD filetype is not recognizedv9.0.1549Colin Kennedy2023-05-131-0/+3
| | | | | Problem: USD filetype is not recognized. Solution: Add patterns for USD filetype. (Colin Kennedy, closes #12370)
* patch 9.0.1546: some commands for opening a file don't use 'switchbuf'v9.0.1546Yegappan Lakshmanan2023-05-121-9/+11
| | | | | | Problem: Some commands for opening a file don't use 'switchbuf'. Solution: Use 'switchbuf' for more commands. (Yegappan Lakshmanan, closes #12383, closes #12381)
* patch 9.0.1539: typst filetype is not recognizedv9.0.1539Gaetan Lepage2023-05-103-2/+31
| | | | | Problem: Typst filetype is not recognized. Solution: Distinguish between sql and typst. (Gaetan Lepage, closes #12363)
* patch 9.0.1537: message for opening the cmdline window is not translatedv9.0.1537Bram Moolenaar2023-05-101-1/+1
| | | | | | 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)
* patch 9.0.1519: global 'filetype' is set when detected from file contentv9.0.1519Bram Moolenaar2023-05-061-76/+76
| | | | | Problem: Global 'filetype' is set when it is detected from the file content. Solution: Set the local 'filetype' option value.
* patch 9.0.1516: cannot use special keys in <Cmd> mappingv9.0.1516zeertzjq2023-05-061-4/+0
| | | | | | Problem: Cannot use special keys in <Cmd> mapping. Solution: Do allow for special keys in <Cmd> and <ScriptCmd> mappings. (closes #12326)
* patch 9.0.1515: reverse() does not work for a Stringv9.0.1515Yegappan Lakshmanan2023-05-062-7/+12
| | | | | | Problem: reverse() does not work for a String. Solution: Implement reverse() for a String. (Yegappan Lakshmanan, closes #12179)
* patch 9.0.1504: no error when calling remote_startserver("")v9.0.1504h-east2023-05-011-2/+3
| | | | | | Problem: No error when calling remote_startserver() with an empty string. Solution: Give an error for an empty string. (Hirohito Higashi, closes #12327)
* patch 9.0.1503: Luau files are not recognizedv9.0.1503Amaan Qureshi2023-04-301-0/+3
| | | | | Problem: Luau files are not recognized. Solution: Add a patter for Luau files. (Amaan Qureshi, closes #12317)
* patch 9.0.1485: no functions for converting from/to UTF-16 indexv9.0.1485Christian Brabandt2023-04-243-10/+117
| | | | | | 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)
* patch 9.0.1481: decrypting with libsodium may fail if the library changesv9.0.1481Christian Brabandt2023-04-232-5/+18
| | | | | | Problem: Decrypting with libsodium may fail if the library changes. Solution: Add parameters used to the encrypted file header. (Christian Brabandt, closes #12279)
* Update runtime filesBram Moolenaar2023-04-2261-815/+3683
|
* patch 9.0.1478: filetypes for *.v files not detected properlyv9.0.1478Turiiya2023-04-222-2/+37
| | | | | | Problem: Filetypes for *.v files not detected properly. Solution: Use the file contents to detect the filetype. (Turiiya, closes #12281)
* patch 9.0.1476: lines put in non-current window are not displayedv9.0.1476Bram Moolenaar2023-04-221-0/+3
| | | | | | | 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)
* patch 9.0.1467: Jenkinsfiles are not recognized as groovyv9.0.1467dundargoc2023-04-181-1/+1
| | | | | Problem: Jenkinsfiles are not recognized as groovy. Solution: Add a pattern for Jenkinsfiles. (closes #12236)
* patch 9.0.1464: strace filetype detection is expensivev9.0.1464Federico Mengozzi2023-04-171-1/+3
| | | | | | Problem: Strace filetype detection is expensive. Solution: Match with a cheap pattern first. (Federico Mengozzi, closes #12220)
* patch 9.0.1455: C++ 20 modules are not recognizedv9.0.1455Ben Jackson2023-04-151-0/+4
| | | | | | Problem: C++ 20 modules are not recognized. Solution: Add patterns to recognize C++ 20 modules as "cpp". (Ben Jackson, closes #12261)
* patch 9.0.1438: .fs files are falsely recognized as forth filesv9.0.1438Johan Kotlinski2023-04-021-8/+10
| | | | | | 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)
* patch 9.0.1430: Livebook files are not recognizedv9.0.1430Mathias Jean Johansen2023-03-281-0/+3
| | | | | | Problem: Livebook files are not recognized. Solution: Add a pattern for Livebook files. (Mathias Jean Johansen, closes #12203)
* patch 9.0.1425: "wat" and "wast" files are one filetypev9.0.1425Amaan Qureshi2023-03-231-1/+2
| | | | | | Problem: "wat" and "wast" files are one filetype. Solution: Add a separate filetype for "wat" files. (Amaan Qureshi, closes #12165)
* patch 9.0.1423: WebAssembly Interface Type files are not recognizedv9.0.1423Amaan Qureshi2023-03-211-0/+3
| | | | | Problem: WebAssembly Interface Type files are not recognized. Solution: Add a pattern for WIT files. (Amaan Qureshi, closes #12173)
* patch 9.0.1422: Sage files are not recognizedv9.0.1422Amaan Qureshi2023-03-211-0/+3
| | | | | Problem: Sage files are not recognized. Solution: Add a pattern for Sage files. (Amaan Qureshi, closes #12176)
* patch 9.0.1421: Nu files are not recognizedv9.0.1421Amaan Qureshi2023-03-211-0/+3
| | | | | Problem: Nu files are not recognized. Solution: Add a pattern for Nu files. (Amaan Qureshi, closes #12172)
* patch 9.0.1419: Lean files are not recognizedv9.0.1419Amaan Qureshi2023-03-211-0/+3
| | | | | Problem: Lean files are not recognized. Solution: Add a pattern for Lean files. (Amaan Qureshi, closes #12177)
* patch 9.0.1417: ESDL files are not recognizedv9.0.1417Amaan Qureshi2023-03-191-0/+3
| | | | | Problem: ESDL files are not recognized. Solution: Add a pattern for ESDL files. (Amaan Qureshi, closes #12174)
* patch 9.0.1415: Crystal files are not recognizedv9.0.1415Amaan Qureshi2023-03-191-0/+3
| | | | | Problem: Crystal files are not recognized. Solution: Add a pattern for Crystal files. (Amaan Qureshi, closes #12175)
* patch 9.0.1412: Pony files are not recognizedv9.0.1412Amaan Qureshi2023-03-171-0/+3
| | | | | Problem: Pony files are not recognized. Solution: Add a pattern for Pony files. (Amaan Qureshi, closes #12155)
* patch 9.0.1411: accuracy of profiling is not optimalv9.0.1411Ernie Rael2023-03-162-4/+7
| | | | | Problem: Accuracy of profiling is not optimal. Solution: Use CLOCK_MONOTONIC if possible. (Ernie Rael, closes #12129)
* patch 9.0.1410: MacOS: sed fails on .po filesv9.0.1410Yee Cheng Chin2023-03-161-23/+24
| | | | | Problem: MacOS: sed fails on .po files. Solution: Set $LANG to "C". (Yee Cheng Chin, closes #12153)
* patch 9.0.1409: racket files are recognized as schemev9.0.1409Gabriel Kakizaki2023-03-161-2/+5
| | | | | | Problem: Racket files are recognized as scheme. Solution: Recognize rackets files separately. (Gabriel Kakizaki, closes #12164, closes #12162)
* patch 9.0.1408: QMLdir files are not recognizedv9.0.1408Amaan Qureshi2023-03-161-0/+3
| | | | | Problem: QMLdir files are not recognized. Solution: Add a pattern for QMLdir files. (Amaan Qureshi, closes #12161)
* patch 9.0.1407: TableGen files are not recognizedv9.0.1407Amaan Qureshi2023-03-161-0/+3
| | | | | Problem: TableGen files are not recognized. Solution: Add a pattern for TableGen files. (Amaan Qureshi, closes #12156)
* patch 9.0.1406: ILE RPG files are not recognizedv9.0.1406Andreas Louv2023-03-161-0/+3
| | | | | Problem: ILE RPG files are not recognized. Solution: Add patterns for ILE RPG files. (Andreas Louv, issue #12152)
* patch 9.0.1403: unused variables and functionsv9.0.1403Dominique Pelle2023-03-122-4/+4
| | | | | Problem: Unused variables and functions. Solution: Delete items and adjust #ifdefs. (Dominique Pellé, closes #12145)
* patch 9.0.1399: highlight test script has a few problemsv9.0.1399lagygoill2023-03-102-143/+123
| | | | | Problem: Highlight test script has a few problems. Solution: Rewrite the script in Vim9 syntax. (closes #10379)
* patch 9.0.1397: highlight for popupmenu kind and extra cannot be setv9.0.1397Gianmaria Bajo2023-03-102-0/+14
| | | | | | Problem: Highlight for popupmenu kind and extra cannot be set. Solution: Add PmenuKind, PmenuKindSel, PmenuExtra and PmenuExtraSel highlight groups and use them. (Gianmaria Bajo, closes #12114)
* patch 9.0.1396: sort(list, 'N') does not work in Vim9 script contextv9.0.1396Bram Moolenaar2023-03-091-2/+3
| | | | | Problem: sort(list, 'N') does not work in Vim9 script context. Solution: Convert string to number without giving an error. (closes #12061)
* patch 9.0.1395: Odin files are not recognizedv9.0.1395Amaan Qureshi2023-03-081-0/+3
| | | | | Problem: Odin files are not recognized. Solution: Add a pattern for Odin files. (Amaan Qureshi, closes #12122)
* patch 9.0.1394: Unx Tal files are not recognizedv9.0.1394Amaan Qureshi2023-03-081-0/+3
| | | | | Problem: Unx Tal files are not recognized. Solution: Add a pattern for Unx Tal files. (Amaan Qureshi, closes #12117)
* patch 9.0.1393: Cairo files are not recognizedv9.0.1393Amaan Qureshi2023-03-081-0/+3
| | | | | Problem: Cairo files are not recognized. Solution: Add a pattern for Cairo files. (Amaan Qureshi, closes #12118)
* patch 9.0.1368: Bass files are not recognizedv9.0.1368Amaan Qureshi2023-03-021-0/+3
| | | | | Problem: Bass files are not recognized. Solution: Add patterns for Bass files. (Amaan Qureshi, closes #12088)
* Update runtime filesBram Moolenaar2023-02-2735-203/+683
|
* patch 9.0.1360: Cue files are not recognizedv9.0.1360Amaan Qureshi2023-02-271-2/+5
| | | | | Problem: Cue files are not recognized. Solution: Add patterns for Cue files. (Amaan Qureshi, closes #12067)
* patch 9.0.1351: Dhall files are not recognizedv9.0.1351Amaan Qureshi2023-02-241-0/+3
| | | | | Problem: Dhall files are not recognized. Solution: Add patterns for Dhall files. (Amaan Qureshi, closes #12052)
* patch 9.0.1350: CPON files are not recognizedv9.0.1350Amaan Qureshi2023-02-241-0/+3
| | | | | Problem: CPON files are not recognized. Solution: Add patterns for CPON files. (Amaan Qureshi, closes #12053)
* patch 9.0.1348: Un-grammar files are not recognizedv9.0.1348Amaan Qureshi2023-02-231-0/+3
| | | | | Problem: Un-grammar files are not recognized. Solution: Add patterns for Un-grammar files. (Amaan Qureshi, closes #12034)
* patch 9.0.1346: Starlark files are not recognizedv9.0.1346Amaan Qureshi2023-02-231-0/+3
| | | | | Problem: Starlark files are not recognized. Solution: Add patterns for Starlark files. (Amaan Qureshi, closes #12049)
* patch 9.0.1337: yuck files are not recognizedv9.0.1337Amaan Qureshi2023-02-211-0/+3
| | | | | | Problem: Yuck files are not recognized. Solution: Add a filetype pattern for yuck files. (Amaan Qureshi, closes #12033)