summaryrefslogtreecommitdiff
path: root/src/vim9execute.c
Commit message (Expand)AuthorAgeFilesLines
* patch 9.0.0683: cannot specify a time for :echowindowv9.0.0683Bram Moolenaar2022-10-071-4/+14
* patch 9.0.0632: calling a function from an "expr" option has overheadv9.0.0632Bram Moolenaar2022-10-011-2/+3
* patch 9.0.0617: calling function for reduce() has too much overheadv9.0.0617Bram Moolenaar2022-09-281-4/+9
* patch 9.0.0549: duplicated code in calling a :def functionv9.0.0549Bram Moolenaar2022-09-221-22/+12
* patch 9.0.0547: looping over empty out_loop[] entriesv9.0.0547Bram Moolenaar2022-09-221-6/+5
* patch 9.0.0504: still a build failurev9.0.0504Bram Moolenaar2022-09-191-3/+3
* patch 9.0.0502: a closure in a nested loop in a :def function does not workv9.0.0502Bram Moolenaar2022-09-191-68/+133
* patch 9.0.0499: in :def function list created after const is lockedv9.0.0499Bram Moolenaar2022-09-181-0/+1
* patch 9.0.0495: closure doesn't work properly in nested loopv9.0.0495Bram Moolenaar2022-09-181-2/+2
* patch 9.0.0491: no good reason to build without the float featurev9.0.0491Bram Moolenaar2022-09-171-24/+0
* patch 9.0.0487: using freed memory with combination of closuresv9.0.0487Bram Moolenaar2022-09-171-16/+21
* patch 9.0.0485: in :def function all closures in loop get the same variablesv9.0.0485Bram Moolenaar2022-09-171-13/+180
* patch 9.0.0481: in :def function all closures in loop get the same variablesv9.0.0481Bram Moolenaar2022-09-161-34/+93
* patch 9.0.0470: in :def function all closures in loop get the same variablesv9.0.0470Bram Moolenaar2022-09-151-16/+96
* patch 9.0.0440: crash when using mkdir() with "R" flag in compiled functionv9.0.0440Bram Moolenaar2022-09-111-4/+10
* patch 9.0.0432: crash when using for loop variable in closurev9.0.0432Bram Moolenaar2022-09-091-0/+6
* patch 9.0.0405: arguments in a partial not used by a :def functionv9.0.0405Bram Moolenaar2022-09-071-12/+21
* patch 9.0.0399: using :defer in expression funcref not testedv9.0.0399Bram Moolenaar2022-09-061-1/+22
* patch 9.0.0398: members of funccall_T are inconsistently namedv9.0.0398Bram Moolenaar2022-09-061-3/+3
* patch 9.0.0397: :defer not tested with exceptions and ":qa!"v9.0.0397Bram Moolenaar2022-09-061-9/+31
* patch 9.0.0382: freeing the wrong string on failurev9.0.0382Bram Moolenaar2022-09-051-5/+6
* patch 9.0.0379: cleaning up after writefile() is a hasslev9.0.0379Bram Moolenaar2022-09-041-16/+79
* patch 9.0.0373: Coverity warns for NULL check and unused return valuev9.0.0373Bram Moolenaar2022-09-041-3/+2
* patch 9.0.0370: cleaning up afterwards can make a function messyv9.0.0370Bram Moolenaar2022-09-031-15/+111
* patch 9.0.0350: :echowindow does not work in a compiled functionv9.0.0350Bram Moolenaar2022-09-011-0/+14
* patch 9.0.0056: wrong line number reported when :cexpr fails in :def functionBram Moolenaar2022-07-181-0/+1
* patch 9.0.0004: plural messages not translated properlyv9.0.0004Matvey Tarasov2022-06-291-16/+8
* patch 8.2.5006: asan warns for undefined behaviorv8.2.5006Bram Moolenaar2022-05-221-1/+1
* patch 8.2.5004: right shift on negative number does not work as documentedv8.2.5004Bram Moolenaar2022-05-221-6/+1
* patch 8.2.5003: cannot do bitwise shiftsv8.2.5003Yegappan Lakshmanan2022-05-221-0/+28
* patch 8.2.4995: still a compiler warning for possibly uninitialized variablev8.2.4995Bram Moolenaar2022-05-211-2/+2
* patch 8.2.4992: compiler warning for possibly uninitialized variablev8.2.4992Bram Moolenaar2022-05-211-1/+1
* patch 8.2.4989: cannot specify a function name for :defcompilev8.2.4989Bram Moolenaar2022-05-211-42/+2
* patch 8.2.4976: Coverity complains about not restoring a saved valuev8.2.4976Bram Moolenaar2022-05-181-3/+4
* patch 8.2.4973: Vim9: type error for list unpack mentions argumentv8.2.4973Bram Moolenaar2022-05-171-3/+7
* patch 8.2.4928: various white space and cosmetic mistakesv8.2.4928Bram Moolenaar2022-05-091-8/+8
* patch 8.2.4870: Vim9: expression in :substitute is not compiledv8.2.4870LemonBoy2022-05-051-0/+4
* patch 8.2.4836: Vim9: some lines not covered by testsv8.2.4836Bram Moolenaar2022-04-281-16/+4
* patch 8.2.4835: Vim9: some lines not covered by testsv8.2.4835Bram Moolenaar2022-04-271-1/+1
* patch 8.2.4834: Vim9: some lines not covered by testsv8.2.4834Bram Moolenaar2022-04-271-58/+33
* patch 8.2.4823: concat more than 2 strings in :def function is inefficientv8.2.4823LemonBoy2022-04-251-15/+51
* patch 8.2.4754: using cached values after unsetting some environment variablesv8.2.4754LemonBoy2022-04-151-1/+2
* patch 8.2.4748: cannot use an imported function in a mappingv8.2.4748Bram Moolenaar2022-04-141-11/+27
* patch 8.2.4698: Vim9: script variable has no flag that it was setv8.2.4698Bram Moolenaar2022-04-051-3/+4
* patch 8.2.4697: Vim9: crash when adding a duplicate key to a dictionaryv8.2.4697Bram Moolenaar2022-04-051-2/+4
* patch 8.2.4680: build failure without +postscriptv8.2.4680Bram Moolenaar2022-04-031-1/+1
* patch 8.2.4678: Vim9: not all code is testedv8.2.4678Bram Moolenaar2022-04-031-0/+3
* patch 8.2.4662: no error for using out of range list indexv8.2.4662Bram Moolenaar2022-04-011-1/+1
* patch 8.2.4657: errors for functions are sometimes hard to readv8.2.4657Bram Moolenaar2022-03-311-11/+8
* patch 8.2.4652: leaking memory if assignment failsv8.2.4652Bram Moolenaar2022-03-311-0/+2