summaryrefslogtreecommitdiff
path: root/src/vim9execute.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.4225: Vim9: depth argument of :lockvar not parsed in :def functionv8.2.4225Bram Moolenaar2022-01-261-2/+3
* patch 8.2.4216: Vim9: cannot use a function from an autoload import directlyv8.2.4216Bram Moolenaar2022-01-251-58/+105
* patch 8.2.4198: Vim9: the switch for executing instructions is too longv8.2.4198Bram Moolenaar2022-01-231-532/+584
* patch 8.2.4137: Vim9: calling import with and without method is inconsistentv8.2.4137Bram Moolenaar2022-01-181-22/+8
* patch 8.2.4131: Vim9: calling function in autoload import does not workv8.2.4131Bram Moolenaar2022-01-181-7/+31
* patch 8.2.4086: "cctx" argument of find_func_even_dead() is unusedv8.2.4086Bram Moolenaar2022-01-131-5/+5
* patch 8.2.4072: Vim9: compiling function fails when autoload is not loadedv8.2.4072Bram Moolenaar2022-01-121-0/+10
* patch 8.2.4043: using int for second argument of ga_init2()v8.2.4043Bram Moolenaar2022-01-081-1/+1
* patch 8.2.4042: Vim9: build errorv8.2.4042Bram Moolenaar2022-01-081-4/+5
* patch 8.2.4019: Vim9: import mechanism is too complicatedv8.2.4019Bram Moolenaar2022-01-061-2/+2
* patch 8.2.3974: Vim9: LISTAPPEND instruction does not check for a locked listv8.2.3974Bram Moolenaar2022-01-011-1/+3
* patch 8.2.3970: error messages are spread outv8.2.3970Bram Moolenaar2022-01-011-1/+1
* patch 8.2.3967: error messages are spread outv8.2.3967Bram Moolenaar2022-01-011-10/+10
* patch 8.2.3961: error messages are spread outv8.2.3961Bram Moolenaar2021-12-311-1/+1
* patch 8.2.3914: various spelling mistakes in commentsv8.2.3914Dominique Pelle2021-12-271-1/+1
* patch 8.2.3902: Vim9: double free with nested :def functionv8.2.3902Bram Moolenaar2021-12-261-1/+3
* patch 8.2.3893: Vim9: many local variables are initialized with an instructionv8.2.3893Bram Moolenaar2021-12-251-2/+12
* patch 8.2.3878: Vim9: debugger tries to read more lines than there arev8.2.3878Bram Moolenaar2021-12-231-1/+2
* patch 8.2.3865: Vim9: compiler complains about using "try" as a struct memberv8.2.3865Bram Moolenaar2021-12-211-4/+4
* patch 8.2.3860: Vim9: codecov struggles with the file sizev8.2.3860Bram Moolenaar2021-12-201-4/+4
* patch 8.2.3851: Vim9: overhead when comparing string, dict or functionv8.2.3851Bram Moolenaar2021-12-191-39/+35
* patch 8.2.3842: Vim9: can change locked list and list itemsv8.2.3842Bram Moolenaar2021-12-171-9/+17
* patch 8.2.3841: Vim9: outdated TODO items, disabled tests that workv8.2.3841Bram Moolenaar2021-12-171-14/+20
* patch 8.2.3830: error messages are spread outv8.2.3830Bram Moolenaar2021-12-161-5/+6
* patch 8.2.3809: Vim9: crash when garbage collecting a nested partialv8.2.3809Bram Moolenaar2021-12-141-1/+51
* patch 8.2.3808: Vim9: obsolete TODO itemsv8.2.3808Bram Moolenaar2021-12-141-3/+3
* patch 8.2.3796: the funcexe_T struct members are not named consistentlyv8.2.3796Bram Moolenaar2021-12-131-3/+3
* patch 8.2.3783: confusing error for using a variable as a functionv8.2.3783Bram Moolenaar2021-12-111-8/+10
* patch 8.2.3765: Vim9: cannot use a lambda for 'opfunc' and othersv8.2.3765Bram Moolenaar2021-12-091-3/+22
* patch 8.2.3753: Vim9: function unreferenced while called is never deletedv8.2.3753Bram Moolenaar2021-12-061-2/+3
* patch 8.2.3746: cannot disassemble function starting with "debug" or "profile"v8.2.3746Bram Moolenaar2021-12-051-2/+2
* patch 8.2.3734: Vim9: crash when no pattern match foundv8.2.3734Bram Moolenaar2021-12-041-0/+2
* patch 8.2.3720: Vim9: Internal error when invoking closure in legacy contextv8.2.3720Bram Moolenaar2021-12-021-1/+7
* patch 8.2.3716: Vim9: range without a command is not compiledv8.2.3716Bram Moolenaar2021-12-011-0/+25
* patch 8.2.3693: Coverity warns for possibly using a NULL pointerv8.2.3693Bram Moolenaar2021-11-291-0/+6
* patch 8.2.3692: Vim9: cannot use :func inside a :def functionv8.2.3692Bram Moolenaar2021-11-281-7/+24
* patch 8.2.3657: Vim9: debug text misses one line of return statementv8.2.3657Bram Moolenaar2021-11-231-1/+1
* patch 8.2.3530: ":buf \{a}" fails while ":edit \{a}" worksv8.2.3530Bram Moolenaar2021-10-171-1/+2
* patch 8.2.3442: Vim9: || and && are not handled at compile timev8.2.3442Bram Moolenaar2021-09-161-0/+3
* patch 8.2.3435: Vim9: dict is not passed to dict functionv8.2.3435Bram Moolenaar2021-09-131-19/+123
* patch 8.2.3423: Vim9: list += list creates a new list in :def functionv8.2.3423Bram Moolenaar2021-09-091-1/+8
* patch 8.2.3395: Vim9: expression breakpoint not checked in :def functionv8.2.3395Bram Moolenaar2021-09-021-1/+11
* patch 8.2.3341: Vim9: function call aborted despite try/catchv8.2.3341Bram Moolenaar2021-08-141-5/+7
* patch 8.2.3339: Vim9: cannot lock a member in a local dictv8.2.3339Bram Moolenaar2021-08-131-15/+43
* patch 8.2.3332: Vim9: cannot assign to range in listv8.2.3332Bram Moolenaar2021-08-111-8/+53
* patch 8.2.3309: Vim9: divide by zero causes a crashv8.2.3309Bram Moolenaar2021-08-071-4/+19
* patch 8.2.3308: Vim9: no runtime check for argument type with varargs onlyv8.2.3308Bram Moolenaar2021-08-071-2/+2
* patch 8.2.3307: Vim9: :echoconsole cannot access local variablesv8.2.3307Bram Moolenaar2021-08-071-3/+15
* patch 8.2.3303: some structures could be smallerv8.2.3303Dominique Pelle2021-08-071-1/+1
* patch 8.2.3275: optimizer can use hints about ga_grow() normally succeedingv8.2.3275Bram Moolenaar2021-08-021-35/+34