summaryrefslogtreecommitdiff
path: root/src/vim9script.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.2093: Vim9: script test sometimes failsv8.2.2093Bram Moolenaar2020-12-051-1/+3
* patch 8.2.1918: Vim9: E1100 mentions :letv8.2.1918Bram Moolenaar2020-10-281-1/+1
* patch 8.2.1870: Vim9: no need to keep all script variablesv8.2.1870Bram Moolenaar2020-10-201-10/+30
* patch 8.2.1846: Vim9: block variables are not found in compiled functionv8.2.1846Bram Moolenaar2020-10-151-9/+24
* patch 8.2.1845: Vim9: function defined in a block can't use block variablesv8.2.1845Bram Moolenaar2020-10-141-2/+125
* patch 8.2.1813: Vim9: can assign wrong type to script dictv8.2.1813Bram Moolenaar2020-10-081-23/+37
* patch 8.2.1744: Vim9: using ":const!" is weirdv8.2.1744Bram Moolenaar2020-09-261-2/+7
* patch 8.2.1674: Vim9: internal error when using variable that was not setv8.2.1674Bram Moolenaar2020-09-131-1/+5
* patch 8.2.1650: Vim9: result of && and || expression is not bool in scriptv8.2.1650Bram Moolenaar2020-09-091-1/+14
* patch 8.2.1551: Vim9: error for argument type does not mention the numberv8.2.1551Bram Moolenaar2020-08-301-1/+1
* patch 8.2.1504: Vim9: white space checks are only done for a :def functionv8.2.1504Bram Moolenaar2020-08-211-1/+1
* patch 8.2.1503: Vim9: error for autocmd defined in :def in legacy scriptv8.2.1503Bram Moolenaar2020-08-211-0/+4
* patch 8.2.1460: error messages are spread outv8.2.1460Bram Moolenaar2020-08-151-19/+16
* patch 8.2.1444: error messages are spread out and names can be confusingv8.2.1444Bram Moolenaar2020-08-131-3/+3
* patch 8.2.1342: Vim9: accidentally using "t" gives a confusing errorv8.2.1342Bram Moolenaar2020-08-011-1/+2
* patch 8.2.1311: test failures with legacy Vim scriptv8.2.1311Bram Moolenaar2020-07-281-10/+11
* patch 8.2.1308: Vim9: accidentally using "x" causes Vim to exitv8.2.1308Bram Moolenaar2020-07-281-2/+19
* patch 8.2.1287: Vim9: crash when using an imported functionv8.2.1287Bram Moolenaar2020-07-231-0/+3
* patch 8.2.1275: Vim9: compiler warning for buffer sizev8.2.1275Bram Moolenaar2020-07-231-2/+2
* patch 8.2.1272: Vim9: type not checked if declaration also assigns valuev8.2.1272Bram Moolenaar2020-07-221-1/+1
* patch 8.2.1190: Vim9: checking for Vim9 syntax is spread outv8.2.1190Bram Moolenaar2020-07-121-2/+4
* patch 8.2.1160: Vim9: memory leak in allocated typesv8.2.1160Bram Moolenaar2020-07-081-1/+1
* patch 8.2.1148: warning for using int instead of size_tv8.2.1148Bram Moolenaar2020-07-061-1/+1
* patch 8.2.1125: Vim9: double quote can be a string or a commentv8.2.1125Bram Moolenaar2020-07-041-1/+1
* patch 8.2.1124: Vim9: no line break allowed in :import commandv8.2.1124Bram Moolenaar2020-07-041-86/+116
* patch 8.2.1111: inconsistent naming of get_list_tv() and eval_dict()v8.2.1111Bram Moolenaar2020-07-011-2/+2
* patch 8.2.1012: Vim9: cannot declare single character script variablesv8.2.1012Bram Moolenaar2020-06-191-1/+1
* patch 8.2.1011: Vim9: some code not testedv8.2.1011Bram Moolenaar2020-06-191-4/+6
* patch 8.2.0992: Vim9: crash when using :import in the Vim commandv8.2.0992Bram Moolenaar2020-06-161-2/+10
* patch 8.2.0975: Vim9: script variable does not accept optional s: prefixv8.2.0975Bram Moolenaar2020-06-141-3/+8
* patch 8.2.0974: Vim9: memory leak when script var has wrong typev8.2.0974Bram Moolenaar2020-06-131-0/+3
* patch 8.2.0973: Vim9: type is not checked when assigning to a script variablev8.2.0973Bram Moolenaar2020-06-131-0/+25
* patch 8.2.0972: Vim9 script variable declarations need a typev8.2.0972Bram Moolenaar2020-06-131-0/+55
* patch 8.2.0960: cannot use :import in legacy Vim scriptv8.2.0960Bram Moolenaar2020-06-111-10/+4
* patch 8.2.0818: Vim9: using a discovery phase doesn't work wellv8.2.0818Bram Moolenaar2020-05-241-109/+0
* patch 8.2.0806: using "func!" after vim9script gives confusing errorv8.2.0806Bram Moolenaar2020-05-211-0/+6
* patch 8.2.0755: Vim9: No error when variable initializer is not a constantv8.2.0755Bram Moolenaar2020-05-151-6/+14
* patch 8.2.0731: Vim9: parsing declarations continues after :finishv8.2.0731Bram Moolenaar2020-05-101-0/+6
* patch 8.2.0725: Vim9: cannot call a function declared later in Vim9 scriptv8.2.0725Bram Moolenaar2020-05-091-2/+91
* patch 8.2.0650: Vim9: script function can be deletedv8.2.0650Bram Moolenaar2020-04-271-1/+1
* patch 8.2.0419: various memory leaks in Vim9 script codev8.2.0419Bram Moolenaar2020-03-201-1/+3
* patch 8.2.0368: Vim9: import that redefines local variable does not failv8.2.0368Bram Moolenaar2020-03-091-2/+8
* patch 8.2.0313: Vim9: insufficient script testsv8.2.0313Bram Moolenaar2020-02-231-7/+9
* patch 8.2.0312: Vim9: insufficient script testsv8.2.0312Bram Moolenaar2020-02-231-61/+88
* patch 8.2.0172: Coverity warning for not restoring characterv8.2.0172Bram Moolenaar2020-01-281-3/+2
* patch 8.2.0155: warnings from MinGW compiler; tests fail without +floatv8.2.0155Bram Moolenaar2020-01-261-0/+2
* patch 8.2.0154: reallocating the list of scripts is inefficientv8.2.0154Bram Moolenaar2020-01-261-6/+6
* patch 8.2.0149: maintaining a Vim9 branch separately is more workv8.2.0149Bram Moolenaar2020-01-261-0/+405