summaryrefslogtreecommitdiff
path: root/src/evalfunc.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.3889: duplicate code for translating script-local function namev8.2.3889Yegappan Lakshmanan2021-12-241-12/+1
* patch 8.2.3882: more duplicated code in f_getreginfo()v8.2.3882zeertzjq2021-12-241-18/+6
* patch 8.2.3879: getreg() and getregtype() contain dead codev8.2.3879Bram Moolenaar2021-12-241-47/+46
* patch 8.2.3872: Vim9: finddir() and uniq() return types can be more specificv8.2.3872Bram Moolenaar2021-12-221-2/+11
* patch 8.2.3866: Vim9: type checking global variables is inconsistentv8.2.3866Bram Moolenaar2021-12-211-24/+55
* patch 8.2.3857: Vim9: inconsistent error for using function()v8.2.3857Bram Moolenaar2021-12-201-13/+7
* patch 8.2.3848: cannot use reduce() for a stringv8.2.3848rbtnn2021-12-181-1/+16
* patch 8.2.3830: error messages are spread outv8.2.3830Bram Moolenaar2021-12-161-4/+5
* patch 8.2.3822: leaking memory in map() and filter(), no string in Vim9v8.2.3822Bram Moolenaar2021-12-161-1/+17
* patch 8.2.3795: too many #ifdefsv8.2.3795Bram Moolenaar2021-12-131-15/+1
* patch 8.2.3705: cannot pass a lambda name to function() or funcref()v8.2.3705Bram Moolenaar2021-11-301-3/+2
* patch 8.2.3699: the +title feature adds a lot of #ifdef but little codev8.2.3699Bram Moolenaar2021-11-291-7/+1
* patch 8.2.3578: manipulating highlighting is complicatedv8.2.3578Yegappan Lakshmanan2021-11-031-0/+4
* patch 8.2.3576: some functions are not documented for use with a methodv8.2.3576Sean Dewar2021-11-031-1/+1
* patch 8.2.3530: ":buf \{a}" fails while ":edit \{a}" worksv8.2.3530Bram Moolenaar2021-10-171-1/+1
* patch 8.2.3510: changes are only detected with one second accuracyv8.2.3510Leah Neukirchen2021-10-141-0/+7
* patch 8.2.3456: Vim9: not all functions are tested with empty string argumentv8.2.3456Yegappan Lakshmanan2021-09-261-3/+2
* patch 8.2.3438: cannot manipulate blobsv8.2.3438Yegappan Lakshmanan2021-09-141-0/+14
* patch 8.2.3415: Vim9: not all function argument types are properly checkedv8.2.3415Yegappan Lakshmanan2021-09-081-6/+2
* patch 8.2.3401: Vim9: cannot use negative count with finddir() and findfile()v8.2.3401Bram Moolenaar2021-09-041-2/+2
* patch 8.2.3396: when libcall() fails invalid pointer may be usedv8.2.3396Bram Moolenaar2021-09-021-0/+5
* patch 8.2.3380: crash when using NULL string for funcref()v8.2.3380Bram Moolenaar2021-08-281-0/+5
* patch 8.2.3360: user function completion fails with dict functionv8.2.3360naohiro ono2021-08-191-2/+3
* patch 8.2.3356: adding many text properties requires a lot of function callsv8.2.3356Yegappan Lakshmanan2021-08-161-0/+3
* patch 8.2.3337: completing "call g:" returns entries with just "g:"v8.2.3337Bram Moolenaar2021-08-131-1/+1
* patch 8.2.3334: Vim9: not enough tests run with Vim9v8.2.3334Bram Moolenaar2021-08-121-1/+2
* patch 8.2.3316: float test failsv8.2.3316Bram Moolenaar2021-08-081-1/+1
* patch 8.2.3314: behavior of exists() in a :def function is unpredictablev8.2.3314Bram Moolenaar2021-08-081-0/+9
* patch 8.2.3300: Lua: can only execute on Vim command at a timev8.2.3300Yegappan Lakshmanan2021-08-061-0/+42
* patch 8.2.3299: Vim9: exists() does not handle much at compile timev8.2.3299Bram Moolenaar2021-08-051-0/+7
* patch 8.2.3276: Vim9: exists() can only be evaluated at runtimev8.2.3276Bram Moolenaar2021-08-021-2/+1
* patch 8.2.3269: Vim9: wrong argument check for partialv8.2.3269Bram Moolenaar2021-08-011-10/+16
* patch 8.2.3261: Vim9: when compiling repeat(123, N) return type is numberv8.2.3261Bram Moolenaar2021-07-311-1/+8
* patch 8.2.3252: duplicated code for adding buffer linesv8.2.3252Yegappan Lakshmanan2021-07-301-36/+0
* patch 8.2.3229: Vim9: runtime and compile time type checks are not the samev8.2.3229Yegappan Lakshmanan2021-07-271-33/+278
* patch 8.2.3226: new digraph functions use old naming schemev8.2.3226h-east2021-07-261-8/+8
* patch 8.2.3221: Vim9: argument types are not checked at compile timev8.2.3221Yegappan Lakshmanan2021-07-251-10/+70
* patch 8.2.3215: Vim9: argument types are not checked at compile timev8.2.3215Yegappan Lakshmanan2021-07-241-77/+112
* patch 8.2.3211: Vim9: argument types are not checked at compile timev8.2.3211Yegappan Lakshmanan2021-07-241-17/+48
* patch 8.2.3206: Vim9: argument types are not checked at compile timev8.2.3206Yegappan Lakshmanan2021-07-231-82/+138
* patch 8.2.3203: Vim9: compiled string expression causes type errorv8.2.3203Bram Moolenaar2021-07-221-1/+3
* patch 8.2.3194: Vim9: argument types are not checked at compile timev8.2.3194Yegappan Lakshmanan2021-07-211-92/+115
* patch 8.2.3188: Vim9: argument types are not checked at compile timev8.2.3188Yegappan Lakshmanan2021-07-201-103/+385
* patch 8.2.3184: cannot add a digraph with a leading spacev8.2.3184mityu2021-07-191-0/+15
* patch 8.2.3173: Vim9: argument types are not checked at compile timev8.2.3173Yegappan Lakshmanan2021-07-171-22/+55
* patch 8.2.3162: Vim9: argument types are not checked at compile timev8.2.3162Yegappan Lakshmanan2021-07-151-105/+144
* patch 8.2.3158: strange error message when using islocked() with a numberv8.2.3158Bram Moolenaar2021-07-131-1/+4
* patch 8.2.3154: Vim9: some type checks for builtin functions failv8.2.3154Yegappan Lakshmanan2021-07-111-3/+4
* patch 8.2.3150: Vim9: argument types are not checked at compile timev8.2.3150Yegappan Lakshmanan2021-07-111-19/+51
* patch 8.2.3148: Vim9: function arg type check does not handle base offsetv8.2.3148Bram Moolenaar2021-07-111-1/+2