summaryrefslogtreecommitdiff
path: root/src/userfunc.c
Commit message (Expand)AuthorAgeFilesLines
* patch 9.0.0949: crash when unletting a variable while listing variablesv9.0.0949Bram Moolenaar2022-11-251-12/+12
* patch 9.0.0875: using freed memory when executing delfunc at more promptv9.0.0875Bram Moolenaar2022-11-131-28/+60
* patch 9.0.0828: various typosv9.0.0828dundargoc2022-11-021-2/+2
* patch 9.0.0632: calling a function from an "expr" option has overheadv9.0.0632Bram Moolenaar2022-10-011-4/+76
* patch 9.0.0630: in Vim9 script a numbered function cannot be calledv9.0.0630Bram Moolenaar2022-09-301-1/+2
* patch 9.0.0568: autocmd code is indented more than neededv9.0.0568Yegappan Lakshmanan2022-09-241-31/+29
* patch 9.0.0553: no error for "|" after "{" in lamdav9.0.0553Bram Moolenaar2022-09-221-2/+4
* patch 9.0.0502: a closure in a nested loop in a :def function does not workv9.0.0502Bram Moolenaar2022-09-191-8/+5
* patch 9.0.0481: in :def function all closures in loop get the same variablesv9.0.0481Bram Moolenaar2022-09-161-2/+8
* patch 9.0.0476: varargs does not work for replacement function of substitute()v9.0.0476zeertzjq2022-09-161-1/+1
* patch 9.0.0419: the :defer command does not check the function argumentsv9.0.0419Bram Moolenaar2022-09-081-1/+40
* patch 9.0.0411: only created files can be cleaned up with one callv9.0.0411Bram Moolenaar2022-09-071-0/+15
* patch 9.0.0406: deferred functions not invoked when partial func exitsv9.0.0406Bram Moolenaar2022-09-071-8/+36
* patch 9.0.0405: arguments in a partial not used by a :def functionv9.0.0405Bram Moolenaar2022-09-071-1/+1
* patch 9.0.0399: using :defer in expression funcref not testedv9.0.0399Bram Moolenaar2022-09-061-3/+11
* patch 9.0.0398: members of funccall_T are inconsistently namedv9.0.0398Bram Moolenaar2022-09-061-134/+136
* patch 9.0.0397: :defer not tested with exceptions and ":qa!"v9.0.0397Bram Moolenaar2022-09-061-7/+31
* patch 9.0.0390: cannot use a partial with :deferv9.0.0390Bram Moolenaar2022-09-051-3/+28
* patch 9.0.0379: cleaning up after writefile() is a hasslev9.0.0379Bram Moolenaar2022-09-041-17/+43
* patch 9.0.0377: argument assignment does not workv9.0.0377Bram Moolenaar2022-09-041-1/+1
* patch 9.0.0376: clang warns for dead assignmentsv9.0.0376Yegappan Lakshmanan2022-09-041-2/+0
* patch 9.0.0370: cleaning up afterwards can make a function messyv9.0.0370Bram Moolenaar2022-09-031-86/+213
* patch 9.0.0303: it is not easy to get information about a scriptv9.0.0303Yegappan Lakshmanan2022-08-281-2/+0
* patch 9.0.0225: using freed memory with multiple line breaks in expressionv9.0.0225Bram Moolenaar2022-08-181-15/+0
* patch 9.0.0219: cannot make a funcref with "s:func" in a def functionv9.0.0219Kota Kato2022-08-161-1/+2
* patch 9.0.0107: condition always has the same valuev9.0.0107Bram Moolenaar2022-07-291-4/+1
* patch 9.0.0003: functions are global while they could be localv9.0.0003Yegappan Lakshmanan2022-06-291-1/+2
* patch 8.2.5117: crash when calling a Lua callback from a :def functionv8.2.5117Bram Moolenaar2022-06-171-8/+9
* patch 8.2.4992: compiler warning for possibly uninitialized variablev8.2.4992Bram Moolenaar2022-05-211-2/+2
* patch 8.2.4990: memory leak when :defcompile failsv8.2.4990Bram Moolenaar2022-05-211-0/+1
* patch 8.2.4989: cannot specify a function name for :defcompilev8.2.4989Bram Moolenaar2022-05-211-20/+99
* patch 8.2.4948: cannot use Perl heredoc in nested :def functionv8.2.4948Bram Moolenaar2022-05-131-37/+41
* patch 8.2.4928: various white space and cosmetic mistakesv8.2.4928Bram Moolenaar2022-05-091-1/+1
* patch 8.2.4888: line number of lambda ignores line continuationv8.2.4888Bram Moolenaar2022-05-061-4/+10
* patch 8.2.4782: accessing freed memoryv8.2.4782Bram Moolenaar2022-04-181-1/+2
* patch 8.2.4770: cannot easily mix expression and heredocv8.2.4770Yegappan Lakshmanan2022-04-171-5/+16
* patch 8.2.4716: memory allocation failure not tested when defining a functionv8.2.4716Yegappan Lakshmanan2022-04-091-1/+1
* patch 8.2.4682: Vim9: can use :unlockvar for const variablev8.2.4682Bram Moolenaar2022-04-041-1/+1
* patch 8.2.4659: invalid memory access when using printable function namev8.2.4659Bram Moolenaar2022-03-311-1/+1
* patch 8.2.4657: errors for functions are sometimes hard to readv8.2.4657Bram Moolenaar2022-03-311-7/+25
* patch 8.2.4650: "import autoload" only works with using 'runtimepath'v8.2.4650Bram Moolenaar2022-03-301-8/+18
* patch 8.2.4586: Vim9: no error for using lower case name for "func" argumentv8.2.4586Bram Moolenaar2022-03-171-0/+6
* patch 8.2.4548: script-local function is deleted when used in a funcrefv8.2.4548Bram Moolenaar2022-03-111-3/+4
* patch 8.2.4529: Vim9: comparing partial with function failsv8.2.4529Bram Moolenaar2022-03-081-5/+13
* patch 8.2.4528: crash when using null_function for a partialv8.2.4528Bram Moolenaar2022-03-081-6/+11
* patch 8.2.4514: Vim9: some flow commands can be shortenedv8.2.4514Bram Moolenaar2022-03-051-0/+5
* patch 8.2.4472: Coverity warns for use of a freed function namev8.2.4472Bram Moolenaar2022-02-251-1/+1
* patch 8.2.4460: Vim9: wrong error for defining dict functionv8.2.4460Bram Moolenaar2022-02-231-3/+14
* patch 8.2.4429: using script-local function from the wrong scriptv8.2.4429Bram Moolenaar2022-02-211-5/+34
* patch 8.2.4417: using NULL pointerv8.2.4417Bram Moolenaar2022-02-181-1/+3