summaryrefslogtreecommitdiff
path: root/src/dict.c
Commit message (Expand)AuthorAgeFilesLines
* patch 9.0.0618: calling function for reduce() has too much overheadv9.0.0618Bram Moolenaar2022-09-281-3/+8
* patch 9.0.0491: no good reason to build without the float featurev9.0.0491Bram Moolenaar2022-09-171-2/+0
* patch 9.0.0409: #{g:x} was seen as a curly-braces expressionv9.0.0409ii142022-09-071-2/+4
* patch 9.0.0335: checks for Dictionary argument often give a vague errorv9.0.0335Yegappan Lakshmanan2022-08-301-4/+2
* patch 9.0.0331: cannot use items() on a stringv9.0.0331Bram Moolenaar2022-08-301-15/+6
* patch 9.0.0327: items() does not work on a listv9.0.0327Bram Moolenaar2022-08-301-18/+21
* patch 9.0.0063: too many type casts for dict_get functionsv9.0.0063Bram Moolenaar2022-07-231-9/+9
* patch 8.2.5089: some functions return a different value on failurev8.2.5089Yegappan Lakshmanan2022-06-141-2/+3
* patch 8.2.4930: interpolated string expression requires escapingv8.2.4930Bram Moolenaar2022-05-101-2/+2
* patch 8.2.4683: verbose check with dict_find() to see if a key is presentv8.2.4683Yegappan Lakshmanan2022-04-041-2/+11
* patch 8.2.4301: Vim9: type error for copy of dictv8.2.4301Bram Moolenaar2022-02-051-1/+4
* patch 8.2.4286: Vim9: strict type checking after copy() and deepcopy()v8.2.4286Bram Moolenaar2022-02-021-5/+7
* patch 8.2.4043: using int for second argument of ga_init2()v8.2.4043Bram Moolenaar2022-01-081-1/+1
* patch 8.2.4005: error messages are spread outv8.2.4005Bram Moolenaar2022-01-041-1/+1
* patch 8.2.3997: Vim9: not enough testing for extend() and map()v8.2.3997Bram Moolenaar2022-01-041-2/+0
* patch 8.2.3996: Vim9: type checking lacks information about declared typev8.2.3996Bram Moolenaar2022-01-041-2/+3
* patch 8.2.3970: error messages are spread outv8.2.3970Bram Moolenaar2022-01-011-3/+3
* patch 8.2.3967: error messages are spread outv8.2.3967Bram Moolenaar2022-01-011-3/+3
* patch 8.2.3961: error messages are spread outv8.2.3961Bram Moolenaar2021-12-311-2/+2
* patch 8.2.3875: gcc complains about buffer overrunv8.2.3875Bram Moolenaar2021-12-221-2/+3
* patch 8.2.3871: list.c contains code for dict and blobv8.2.3871Yegappan Lakshmanan2021-12-221-39/+250
* patch 8.2.3830: error messages are spread outv8.2.3830Bram Moolenaar2021-12-161-1/+1
* patch 8.2.3702: first key in dict is seen as curly expression and failsv8.2.3702Bram Moolenaar2021-11-301-8/+6
* 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