summaryrefslogtreecommitdiff
path: root/src/userfunc.c
Commit message (Expand)AuthorAgeFilesLines
* patch 9.0.1505: error when heredoc content looks like heredocv9.0.1505zeertzjq2023-05-021-17/+14
* patch 9.0.1470: deferred functions invoked in unexpected orderv9.0.1470zeertzjq2023-04-191-3/+3
* patch 9.0.1469: deferred functions not called from autocommandsv9.0.1469zeertzjq2023-04-181-14/+21
* patch 9.0.1462: recursively calling :defer function if it does :qav9.0.1462Bram Moolenaar2023-04-171-7/+14
* patch 9.0.1454: code indenting is confused by macrosv9.0.1454ichizok2023-04-151-3/+3
* patch 9.0.1446: unnecessary checks for the "skip" flag when skippingv9.0.1446zeertzjq2023-04-121-20/+9
* patch 9.0.1391: "clear" macros are not always usedv9.0.1391Yegappan Lakshmanan2023-03-071-8/+3
* patch 9.0.1390: FOR_ALL_ macros are defined in an unexpected filev9.0.1390Yegappan Lakshmanan2023-03-071-4/+4
* patch 9.0.1338: :defcompile and :disassemble can't find class methodv9.0.1338Bram Moolenaar2023-02-211-22/+46
* patch 9.0.1336: functions without arguments are not always declared properlyv9.0.1336Yegappan Lakshmanan2023-02-211-6/+6
* patch 9.0.1321: vimscript test fails where using {expr} syntaxv9.0.1321Bram Moolenaar2023-02-181-1/+5
* patch 9.0.1320: checking the type of a null object causes a crashv9.0.1320Bram Moolenaar2023-02-181-19/+39
* patch 9.0.1246: code is indented more than necessaryv9.0.1246Yegappan Lakshmanan2023-01-261-29/+28
* patch 9.0.1241: Coverity warns for not checking function return valuev9.0.1241Bram Moolenaar2023-01-251-1/+1
* patch 9.0.1161: Coverity warns for using strcpy()v9.0.1161Bram Moolenaar2023-01-091-3/+4
* patch 9.0.1160: ASAN error for ufunc_T allocated with wrong sizev9.0.1160Bram Moolenaar2023-01-081-9/+19
* patch 9.0.1159: extends argument for class not implemented yetv9.0.1159Bram Moolenaar2023-01-081-0/+68
* patch 9.0.1150: :interface is not implemented yetv9.0.1150Bram Moolenaar2023-01-051-10/+14
* patch 9.0.1142: crash and/or memory leak when redefining functionv9.0.1142Bram Moolenaar2023-01-041-5/+11
* patch 9.0.1133: error message names do not match the itemsv9.0.1133Bram Moolenaar2023-01-021-3/+4
* patch 9.0.1053: default constructor arguments are not optionalv9.0.1053Bram Moolenaar2022-12-131-8/+42
* patch 9.0.1045: in a class object members cannot be initializedv9.0.1045Bram Moolenaar2022-12-101-1/+16
* patch 9.0.1041: cannot define a method in a classv9.0.1041Bram Moolenaar2022-12-091-46/+52
* patch 9.0.1031: Vim9 class is not implemented yetv9.0.1031Bram Moolenaar2022-12-081-9/+62
* 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