summaryrefslogtreecommitdiff
path: root/src/vim9cmds.c
Commit message (Expand)AuthorAgeFilesLines
* patch 9.0.1363: crash when :def function has :break in skipped blockv9.0.1363Bram Moolenaar2023-02-271-1/+4
* patch 9.0.1266: error for space before ": type" is inconsistentv9.0.1266Bram Moolenaar2023-01-301-1/+6
* patch 9.0.1250: cannot use an object method with :deferv9.0.1250Bram Moolenaar2023-01-271-3/+11
* patch 9.0.1133: error message names do not match the itemsv9.0.1133Bram Moolenaar2023-01-021-1/+1
* patch 9.0.1108: type error when using "any" type and adding to floatv9.0.1108Bram Moolenaar2022-12-291-5/+5
* patch 9.0.1094: compiler warning when HAS_MESSAGE_WINDOW is not definedv9.0.1094Bram Moolenaar2022-12-251-1/+5
* patch 9.0.1074: class members are not supported yetv9.0.1074Bram Moolenaar2022-12-181-1/+1
* patch 9.0.0992: Vim9 script: get E1096 when comment follows returnv9.0.0992mityu2022-12-021-1/+2
* patch 9.0.0828: various typosv9.0.0828dundargoc2022-11-021-1/+1
* patch 9.0.0742: reading past end of the line when compiling a functionv9.0.0742Bram Moolenaar2022-10-131-26/+36
* patch 9.0.0726: looping over list of lists works in script, not in functionv9.0.0726Bram Moolenaar2022-10-111-1/+1
* patch 9.0.0724: closure in compiled function gets same variable in blockv9.0.0724Bram Moolenaar2022-10-111-17/+15
* patch 9.0.0683: cannot specify a time for :echowindowv9.0.0683Bram Moolenaar2022-10-071-8/+10
* patch 9.0.0627: "const" and "final" both make the type a constantv9.0.0627Bram Moolenaar2022-09-301-4/+5
* patch 9.0.0502: a closure in a nested loop in a :def function does not workv9.0.0502Bram Moolenaar2022-09-191-35/+95
* patch 9.0.0484: in :def function all closures in loop get the same variablesv9.0.0484Bram Moolenaar2022-09-171-61/+77
* patch 9.0.0481: in :def function all closures in loop get the same variablesv9.0.0481Bram Moolenaar2022-09-161-0/+43
* patch 9.0.0470: in :def function all closures in loop get the same variablesv9.0.0470Bram Moolenaar2022-09-151-24/+102
* patch 9.0.0420: function went missingv9.0.0420Bram Moolenaar2022-09-081-0/+21
* patch 9.0.0419: the :defer command does not check the function argumentsv9.0.0419Bram Moolenaar2022-09-081-28/+18
* Revert part of patch merged twiceBram Moolenaar2022-09-041-21/+0
* patch 9.0.0380: deleting files in tests is a hasslev9.0.0380Bram Moolenaar2022-09-041-0/+21
* patch 9.0.0379: cleaning up after writefile() is a hasslev9.0.0379Bram Moolenaar2022-09-041-11/+26
* patch 9.0.0370: cleaning up afterwards can make a function messyv9.0.0370Bram Moolenaar2022-09-031-0/+64
* patch 9.0.0350: :echowindow does not work in a compiled functionv9.0.0350Bram Moolenaar2022-09-011-0/+4
* patch 9.0.0212: invalid memory access when compiling :unletv9.0.0212Bram Moolenaar2022-08-141-0/+6
* patch 9.0.0211: invalid memory access when compiling :lockvarv9.0.0211Bram Moolenaar2022-08-141-2/+7
* patch 8.2.4823: concat more than 2 strings in :def function is inefficientv8.2.4823LemonBoy2022-04-251-1/+1
* patch 8.2.4666: Vim9: assignment not recognized in skipped blockv8.2.4666Bram Moolenaar2022-04-021-2/+2
* patch 8.2.4615: mapping with escaped bar does not work in :def functionv8.2.4615Bram Moolenaar2022-03-231-1/+1
* patch 8.2.4610: some conditions are always truev8.2.4610Bram Moolenaar2022-03-221-2/+1
* patch 8.2.4572: Vim9: return type "any" is changed to first returned typev8.2.4572Bram Moolenaar2022-03-151-2/+1
* patch 8.2.4552: in a :def function "put = expr" does not workv8.2.4552Bram Moolenaar2022-03-121-1/+1
* patch 8.2.4542: Vim9: "break" inside try/catch not handled correctlyv8.2.4542Bram Moolenaar2022-03-101-6/+20
* patch 8.2.4471: Coverity warns for uninitialized variablev8.2.4471Bram Moolenaar2022-02-251-1/+1
* patch 8.2.4318: various comment and indent mistakes, returning wrong zerov8.2.4318Bram Moolenaar2022-02-071-3/+3
* patch 8.2.4285: Vim9: type of item in for loop not checked properlyv8.2.4285Bram Moolenaar2022-02-021-7/+2
* patch 8.2.4227: Vim9: using "lockvar!" in :def function does not workv8.2.4227Bram Moolenaar2022-01-261-4/+6
* patch 8.2.4225: Vim9: depth argument of :lockvar not parsed in :def functionv8.2.4225Bram Moolenaar2022-01-261-3/+20
* patch 8.2.4178: Vim9: invalid error for return type of lambda when debuggingv8.2.4178Bram Moolenaar2022-01-221-1/+4
* patch 8.2.4138: Vim9: no error for return with argument when invalidv8.2.4138Bram Moolenaar2022-01-181-7/+5
* patch 8.2.4071: Vim9: no detection of return in try/endtryv8.2.4071Bram Moolenaar2022-01-121-0/+11
* patch 8.2.4021: missing part of the :import changesv8.2.4021Bram Moolenaar2022-01-061-10/+10
* patch 8.2.3996: Vim9: type checking lacks information about declared typev8.2.3996Bram Moolenaar2022-01-041-16/+14
* patch 8.2.3981: Vim9: debugging a for loop doesn't stop before it startsv8.2.3981Bram Moolenaar2022-01-021-16/+22
* patch 8.2.3972: error messages are spread outv8.2.3972Bram Moolenaar2022-01-011-3/+3
* patch 8.2.3970: error messages are spread outv8.2.3970Bram Moolenaar2022-01-011-4/+4
* patch 8.2.3961: error messages are spread outv8.2.3961Bram Moolenaar2021-12-311-6/+6
* patch 8.2.3957: error messages are spread outv8.2.3957Bram Moolenaar2021-12-311-3/+3
* patch 8.2.3914: various spelling mistakes in commentsv8.2.3914Dominique Pelle2021-12-271-1/+1