summaryrefslogtreecommitdiff
path: root/src/dict.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.3650: Vim9: for loop variable can be a list memberv8.2.3650Bram Moolenaar2021-11-221-1/+1
* patch 8.2.3407: using uninitialized memory with "let g:['bar'] = 2"v8.2.3407Bram Moolenaar2021-09-061-0/+1
* patch 8.2.3335: Vim9: not enough tests run with Vim9v8.2.3335Bram Moolenaar2021-08-121-2/+3
* patch 8.2.3320: some local functions are not staticv8.2.3320Yegappan Lakshmanan2021-08-091-1/+1
* patch 8.2.3229: Vim9: runtime and compile time type checks are not the samev8.2.3229Yegappan Lakshmanan2021-07-271-0/+8
* patch 8.2.3206: Vim9: argument types are not checked at compile timev8.2.3206Yegappan Lakshmanan2021-07-231-5/+0
* patch 8.2.3200: Vim9: hard to guess where a type error is givenv8.2.3200Bram Moolenaar2021-07-221-3/+3
* patch 8.2.3188: Vim9: argument types are not checked at compile timev8.2.3188Yegappan Lakshmanan2021-07-201-0/+5
* patch 8.2.2921: E704 for script local variable is not backwards compatiblev8.2.2921Bram Moolenaar2021-06-021-2/+3
* patch 8.2.2920: still a way to shadow a builtin functionv8.2.2920Bram Moolenaar2021-06-011-0/+18
* patch 8.2.2501: not always clear where an error is reportedv8.2.2501Bram Moolenaar2021-02-111-1/+2
* patch 8.2.2486: Vim9: some errors for white space do not show contextv8.2.2486Bram Moolenaar2021-02-071-2/+2
* patch 8.2.2480: Vim9: some errors for white space do not show contextv8.2.2480Bram Moolenaar2021-02-071-2/+2
* patch 8.2.2455: Vim9: key type for literal dict and indexing is inconsistentv8.2.2455Bram Moolenaar2021-02-031-3/+5
* patch 8.2.2393: Vim9: error message when script line starts with "[{"v8.2.2393Bram Moolenaar2021-01-221-1/+2
* patch 8.2.2272: Vim9: extend() can violate the type of a variablev8.2.2272Bram Moolenaar2021-01-021-0/+13
* patch 8.2.2162: Vim9: Cannot load or store autoload variablesv8.2.2162Bram Moolenaar2020-12-191-1/+1
* patch 8.2.2146: Vim9: automatic conversion of number to string for dict keyv8.2.2146Bram Moolenaar2020-12-151-0/+5
* patch 8.2.2101: Vim9: memory leak when literal dict has an errorv8.2.2101Bram Moolenaar2020-12-061-0/+1
* patch 8.2.2090: Vim9: dict does not accept a key in quotesv8.2.2090Bram Moolenaar2020-12-041-3/+51
* patch 8.2.2082: Vim9: can still use the depricated #{} dict syntaxv8.2.2082Bram Moolenaar2020-12-021-9/+18
* patch 8.2.2017: missing part of the dict changev8.2.2017Bram Moolenaar2020-11-191-4/+27
* patch 8.2.1961: various comments can be improvedv8.2.1961Bram Moolenaar2020-11-051-0/+1
* patch 8.2.1889: Vim9: errornous error for missing white space after {}v8.2.1889Bram Moolenaar2020-10-221-1/+1
* patch 8.2.1861: Vim9: no specific error when parsing lambda failsv8.2.1861Bram Moolenaar2020-10-181-18/+10
* patch 8.2.1785: compiler warning for strcp() out of boundsv8.2.1785Bram Moolenaar2020-10-021-2/+3
* patch 8.2.1698: cannot lock a variable in legacy Vim script like in Vim9v8.2.1698Bram Moolenaar2020-09-161-2/+2
* patch 8.2.1504: Vim9: white space checks are only done for a :def functionv8.2.1504Bram Moolenaar2020-08-211-4/+4
* patch 8.2.1478: Vim9: cannot use "true" for some popup optionsv8.2.1478Bram Moolenaar2020-08-181-0/+15
* patch 8.2.1444: error messages are spread out and names can be confusingv8.2.1444Bram Moolenaar2020-08-131-4/+4
* patch 8.2.1431: Vim9: no error for white space before comma in dictv8.2.1431Bram Moolenaar2020-08-121-1/+6
* patch 8.2.1430: Vim9: error for missing comma instead of extra white spacev8.2.1430Bram Moolenaar2020-08-121-2/+7
* patch 8.2.1395: Vim9: no error if declaring a funcref with lower case letterv8.2.1395Bram Moolenaar2020-08-081-1/+1
* patch 8.2.1379: curly braces expression ending in " }" does not workv8.2.1379Bram Moolenaar2020-08-061-1/+1
* patch 8.2.1328: no space allowed before comma in listv8.2.1328Bram Moolenaar2020-07-301-2/+5
* patch 8.2.1326: Vim9: skipping over white space after listv8.2.1326Bram Moolenaar2020-07-301-0/+4
* patch 8.2.1190: Vim9: checking for Vim9 syntax is spread outv8.2.1190Bram Moolenaar2020-07-121-1/+1
* patch 8.2.1125: Vim9: double quote can be a string or a commentv8.2.1125Bram Moolenaar2020-07-041-4/+4
* patch 8.2.1110: Vim9: line continuation does not work in function argumentsv8.2.1110Bram Moolenaar2020-07-011-3/+3
* patch 8.2.1074: Vim9: no line break allowed after some operatorsv8.2.1074Bram Moolenaar2020-06-271-12/+3
* patch 8.2.1070: Vim9: leaking memory when lacking white space in dictv8.2.1070Bram Moolenaar2020-06-271-0/+1
* patch 8.2.1068: Vim9: no line break allowed inside a dictv8.2.1068Bram Moolenaar2020-06-271-10/+35
* patch 8.2.1047: Vim9: script cannot use line continuation like :def functionv8.2.1047Bram Moolenaar2020-06-241-3/+8
* patch 8.2.0928: many type casts are used for vim_strnsave()v8.2.0928Bram Moolenaar2020-06-071-1/+1
* patch 8.2.0753: Vim9: expressions are evaluated in the discovery phasev8.2.0753Bram Moolenaar2020-05-141-5/+7
* patch 8.2.0729: Vim9: When reloading a script variables are not clearedv8.2.0729Bram Moolenaar2020-05-101-6/+15
* patch 8.2.0619: null dict is not handled like an empty dictv8.2.0619Bram Moolenaar2020-04-231-4/+5
* patch 8.2.0467: Vim9: some errors are not testedv8.2.0467Bram Moolenaar2020-03-281-4/+8
* patch 8.2.0149: maintaining a Vim9 branch separately is more workv8.2.0149Bram Moolenaar2020-01-261-4/+4
* patch 8.2.0111: VAR_SPECIAL is also used for booleansv8.2.0111Bram Moolenaar2020-01-111-5/+5