summaryrefslogtreecommitdiff
path: root/runtime
Commit message (Collapse)AuthorAgeFilesLines
* Update runtime files.Bram Moolenaar2023-02-2053-237/+635
|
* patch 9.0.1319: PRQL files are not recognizedv9.0.1319Matthias Queitsch2023-02-181-0/+3
| | | | | | Problem: PRQL files are not recognized. Solution: Add a filetype pattern for PRQL files. (Matthias Queitsch, closes #12018)
* patch 9.0.1300: 'statusline' only supports one "%=" itemv9.0.1300Yegappan Lakshmanan2023-02-111-1/+4
| | | | | | Problem: 'statusline' only supports one "%=" item. Solution: Add support for multiple "%=" items. (TJ DeVries, Yegappan Lakshmanan, closes #11970, closes #11965)
* patch 9.0.1291: Move language files are not recognizedv9.0.1291Amaan Qureshi2023-02-071-2/+5
| | | | | Problem: Move language files are not recognized. Solution: Recognize Move language files. (Amaan Qureshi, closes #11947)
* patch 9.0.1288: FunC files are not recognizedv9.0.1288Amaan Qureshi2023-02-061-0/+3
| | | | | Problem: FunC files are not recognized. Solution: Recognize FunC files. (Amaan Qureshi, closes #11949)
* patch 9.0.1282: Ron files are not recognizedv9.0.1282Amaan Qureshi2023-02-051-2/+5
| | | | | Problem: Ron files are not recognized. Solution: Recognize Ron files. (Amaan Qureshi, closes #11948)
* patch 9.0.1281: Cadence files are not recognizedv9.0.1281Janez Podhostnik2023-02-051-0/+3
| | | | | Problem: Cadence files are not recognized. Solution: Recognize Cadence files. (Janez Podhostnik, closes #11951)
* patch 9.0.1278: go.work.sum files are not recognizedv9.0.1278Amaan Qureshi2023-02-041-1/+1
| | | | | | Problem: go.work.sum files are not recognized. Solution: Recognize go.work.sum files as the gosum filetype. (Amaan Qureshi, closes #11940)
* patch 9.0.1276: some mappings with Meta and Shift do not workv9.0.1276Bram Moolenaar2023-02-031-8/+25
| | | | | Problem: Some mappings with Meta and Shift do not work. Solution: Apply the Shift modifier to the key. (issue #11913)
* Update runtime files.Bram Moolenaar2023-02-0243-631/+1002
|
* patch 9.0.1274: FIRRTL files are not recognizedv9.0.1274Amaan Qureshi2023-02-021-0/+3
| | | | | Problem: FIRRTL files are not recognized. Solution: Add a pattern for FIRRTL files. (Amaan Qureshi, closes #11931)
* patch 9.0.1272: typo in pattern for filetype detectionv9.0.1272zeertzjq2023-02-011-1/+1
| | | | | Problem: Typo in pattern for filetype detection. Solution: Fix the typo. (closes #11924)
* patch 9.0.1268: .clangd and .stylelintrc files don't get a filetypev9.0.1268Mark Skelton2023-01-311-1/+4
| | | | | | Problem: .clangd and .stylelintrc files don't get a filetype. Solution: Use yaml for .clangd and json for .stylelintrc files. (Mark Skelton, closes #11916)
* patch 9.0.1263: KDL files are not recognizedv9.0.1263Amaan Qureshi2023-01-301-0/+3
| | | | | Problem: KDL files are not recognized. Solution: Add a pattern for KDL files. (Amaan Qureshi, closes #11898)
* patch 9.0.1261: Elsa files are not recognizedv9.0.1261Amaan Qureshi2023-01-291-0/+3
| | | | | Problem: Elsa files are not recognized. Solution: Add a pattern for Elsa files. (Amaan Qureshi, closes #11908)
* patch 9.0.1256: NetworkManager connection files are not recognizedv9.0.1256ObserverOfTime2023-01-281-0/+1
| | | | | Problem: NetworkManager connection files are not recognized. Solution: Add a pattern for NetworkManager connection files. (closes #11893)
* patch 9.0.1238: :runtime completion can be further improvedv9.0.1238zeertzjq2023-01-241-1/+1
| | | | | | Problem: :runtime completion can be further improved. Solution: Also complete the {where} argument values and adjust the completion for that. (closes #11874)
* patch 9.0.1231: completion of :runtime does not handle {where} argumentv9.0.1231zeertzjq2023-01-221-0/+1
| | | | | Problem: Completion of :runtime does not handle {where} argument. Solution: Parse the {where} argument. (closes #11863)
* patch 9.0.1230: Apache thrift files are not recognizedv9.0.1230Amaan Qureshi2023-01-221-0/+3
| | | | | Problem: Apache thrift files are not recognized. Solution: Add a pattern for thrift files. (Amaan Qureshi, closes #11859)
* patch 9.0.1229: Cap'n Proto files are not recognizedv9.0.1229Amaan Qureshi2023-01-221-0/+3
| | | | | | Problem: Cap'n Proto files are not recognized. Solution: Add a pattern and the "capnp" filetype. (Amaan Qureshi, closes #11862)
* patch 9.0.1223: cannot use setcellwidths() below 0x100v9.0.1223K.Takata2023-01-201-1/+1
| | | | | | Problem: Cannot use setcellwidths() below 0x100. Solution: Also accept characters between 0x80 and 0x100. (Ken Takata, closes #11834)
* patch 9.0.1212: cannot read back what setcellwidths() has donev9.0.1212Kota Kato2023-01-172-1/+10
| | | | | Problem: Cannot read back what setcellwidths() has done. Solution: Add getcellwidths(). (Kota Kato, closes #11837)
* patch 9.0.1191: some Bazel files are not recognizedv9.0.1191Keith Smiley2023-01-131-1/+1
| | | | | Problem: Some Bazel files are not recognized. Solution: Add an extra Bazel pattern. (Keith Smily, closes #11807)
* patch 9.0.1188: return value of type() for class and object unclearv9.0.1188Bram Moolenaar2023-01-122-0/+6
| | | | | Problem: Return value of type() for class and object unclear. Solution: Add v:t_object and v:t_class.
* patch 9.0.1182: go checksum files are not recognizedv9.0.1182Amaan Q2023-01-111-0/+3
| | | | | Problem: go checksum files are not recognized. Solution: Add the name of go checksum files. (Amaan Qureshi, closes #11803)
* patch 9.0.1176: smithy files are not recognizedv9.0.1176Chris Kipp2023-01-111-5/+7
| | | | | Problem: smithy files are not recognized. Solution: Add a pattern for Smithy files. (Chris Kipp, closes #11804)
* patch 9.0.1174: smali files are not recognizedv9.0.1174Amaan Q2023-01-101-0/+3
| | | | | Problem: Smali files are not recognized. Solution: Add a pattern for Smali files. (Amaan Qureshi, closes #11801)
* patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcapv9.0.1168Bram Moolenaar2023-01-101-0/+3
| | | | | Problem: Code to enable/disable mouse is not from terminfo/termcap. Solution: Request the "XM" entry and use it to set 'ttymouse' if possible.
* Update runtime filesBram Moolenaar2023-01-0912-57/+208
|
* patch 9.0.1167: EditorConfig files do not have their own filetypev9.0.1167Gregory Anders2023-01-091-2/+2
| | | | | Problem: EditorConfig files do not have their own filetype. Solution: Add the "editorconfig" filetype. (Gregory Anders, closes #11779)
* patch 9.0.1126: bracketed paste can be enabled when it is not recognizedv9.0.1126Bram Moolenaar2023-01-011-1/+5
| | | | | Problem: Bracketed paste can be enabled when pasted text is not recognized. Solution: Output t_BE only when t_PS and t_PE are set.
* Update runtime filesBram Moolenaar2022-12-3128-140/+1102
|
* patch 9.0.1112: test_mswin_event() can hangv9.0.1112Christopher Plewright2022-12-301-4/+9
| | | | | | Problem: test_mswin_event() can hang. Solution: Add the "execute" argument to process events right away. (Christopher Plewright, closes #11760)
* patch 9.0.1106: not all postfix files are recognizedv9.0.1106KodeToad2022-12-271-1/+1
| | | | | Problem: Not all postfix files are recognized. Solution: Recognize main.cf.proto files. (closes #11732)
* patch 9.0.1103: jq files are not recognizedv9.0.1103David McDonald2022-12-261-0/+3
| | | | | Problem: jq files are not recognized. Solution: Add detection of Jq files. (David McDonald, closes #11743)
* patch 9.0.1090: FHIR Shorthand files are not recognizedv9.0.1090mgramigna2022-12-231-0/+3
| | | | | | Problem: FHIR Shorthand files are not recognized. Solution: Add a pattern to detect FSH files. (Matthew Gramigna, closes #11738)
* patch 9.0.1084: code handling low level MS-Windows events cannot be testedv9.0.1084Christopher Plewright2022-12-203-3/+72
| | | | | | Problem: Code handling low level MS-Windows events cannot be tested. Solution: Add test_mswin_event() and tests using it. (Christopher Plewright, closes #11622)
* patch 9.0.1082: some jsonc files are not recognizedv9.0.1082kylo2522022-12-191-8/+9
| | | | | | Problem: Some jsonc files are not recognized. Solution: Add patterns for jsonc and move some from json to jsonc. (closes #11711)
* patch 9.0.1080: the "kitty" terminfo entry is not widespreadv9.0.1080Bram Moolenaar2022-12-191-3/+8
| | | | | | | Problem: The "kitty" terminfo entry is not widespread, resulting in the kitty terminal not working properly. Solution: Go back to using "xterm-kitty" and avoid the problems it causes in another way.
* patch 9.0.1073: using "xterm-kitty" for 'term' causes problemsv9.0.1073Bram Moolenaar2022-12-181-0/+20
| | | | | | | Problem: Using "xterm-kitty" for 'term' causes problems. Solution: Remove the "xterm-" part when 'term' is set from $TERM. Detect a few kitty-specific properties based on the version response instead of the terminal name.
* patch 9.0.1061: cannot display 'showcmd' somewhere elsev9.0.1061Luuk van Baal2022-12-151-0/+17
| | | | | Problem: Cannot display 'showcmd' somewhere else. Solution: Add the 'showcmdloc' option. (Luuk van Baal, closes #11684)
* patch 9.0.1057: conflict between supercollider and scala filetype detectionv9.0.1057Chris Kipp2022-12-141-2/+5
| | | | | | Problem: Conflict between supercollider and scala filetype detection. Solution: Do not check for "Class : Method", it can appear in both filetypes. (Chris Kipp, closes #11699)
* patch 9.0.1053: default constructor arguments are not optionalv9.0.1053Bram Moolenaar2022-12-131-6/+10
| | | | | Problem: Default constructor arguments are not optional. Solution: Use "= v:none" to make constructor arguments optional.
* Update runtime filesBram Moolenaar2022-12-1110-97/+522
|
* patch 9.0.1031: Vim9 class is not implemented yetv9.0.1031Bram Moolenaar2022-12-081-3/+6
| | | | | Problem: Vim9 class is not implemented yet. Solution: Add very basic class support.
* patch 9.0.1025: WinScrolled is not triggered when filler lines changev9.0.1025zeertzjq2022-12-071-3/+3
| | | | | | Problem: WinScrolled is not triggered when filler lines change. Solution: Add "topfill" to the values that WinScrolled triggers on. (closes #11668)
* Update runtime filesBram Moolenaar2022-12-0641-185/+1132
|
* patch 9.0.1014: zir files are not recognizedv9.0.1014Bram Moolenaar2022-12-051-1/+2
| | | | | Problem: Zir files are not recognized. Solution: Add a pattern for Zir files. (closes #11664)
* patch 9.0.1007: there is no way to get a list of swap file namesv9.0.1007Bram Moolenaar2022-12-052-0/+13
| | | | | | Problem: There is no way to get a list of swap file names. Solution: Add the swapfilelist() function. Use it in the test script to clean up. Remove deleting individual swap files.
* patch 9.0.1001: classes are not documented or implemented yetv9.0.1001Bram Moolenaar2022-12-043-81/+711
| | | | | | | Problem: Classes are not documented or implemented yet. Solution: Make the first steps at documenting Vim9 objects, classes and interfaces. Make initial choices for the syntax. Add a skeleton implementation. Add "public" and "this" in the command table.