summaryrefslogtreecommitdiff
path: root/src/dict.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* patch 8.2.0086: build error for small versionv8.2.0086Bram Moolenaar2020-01-041-1/+0
* patch 8.2.0084: complete item "user_data" can only be a stringv8.2.0084Bram Moolenaar2020-01-041-1/+39
* patch 8.1.2378: using old C style commentsv8.1.2378Bram Moolenaar2019-12-011-26/+26
* patch 8.1.2095: leaking memory when getting item from dictv8.1.2095Bram Moolenaar2019-09-281-1/+1
* patch 8.1.1949: cannot scroll a popup window to the very bottomv8.1.1949Bram Moolenaar2019-08-301-1/+11
* patch 8.1.1891: functions used in one file are globalv8.1.1891Bram Moolenaar2019-08-201-1/+1
* patch 8.1.1825: allocating more memory than needed for extended structsv8.1.1825Bram Moolenaar2019-08-071-2/+2
* patch 8.1.1763: evalfunc.c is still too bigv8.1.1763Bram Moolenaar2019-07-271-2/+79
* patch 8.1.1683: dictionary with string keys is longer than neededv8.1.1683Bram Moolenaar2019-07-131-2/+27
* patch 8.1.1579: dict and list could be GC'ed while displaying errorv8.1.1579Bram Moolenaar2019-06-221-2/+2
* patch 8.1.1561: popup_setoptions() is not implemented yetv8.1.1561Bram Moolenaar2019-06-161-0/+21
* patch 8.1.1452: line and col property of popup windows not properly checkedv8.1.1452Bram Moolenaar2019-06-021-0/+21
* patch 8.1.1414: alloc() returning "char_u *" causes a lot of type castsv8.1.1414Bram Moolenaar2019-05-281-3/+3
* patch 8.1.1393: unnecessary type castsv8.1.1393Bram Moolenaar2019-05-251-1/+1
* patch 8.1.1384: using "int" for alloc() often results in compiler warningsv8.1.1384Bram Moolenaar2019-05-241-3/+2
* patch 8.1.1228: not possible to process tags with a functionv8.1.1228Bram Moolenaar2019-04-281-0/+49
* patch 8.1.1138: plugins don't get notified when the popup menu changesv8.1.1138Bram Moolenaar2019-04-081-4/+24
* patch 8.1.0897: can modify a:000 when using a referencev8.1.0897Bram Moolenaar2019-02-111-2/+2
* patch 8.1.0743: giving error messages is not flexiblev8.1.0743Bram Moolenaar2019-01-131-6/+6
* patch 8.1.0642: swapinfo() leaks memoryv8.1.0642Bram Moolenaar2018-12-261-1/+21
* patch 8.1.0615: get_tv function names are not consistentv8.1.0615Bram Moolenaar2018-12-211-4/+4
* patch 8.1.0583: using illogical name for get_dict_number()/get_dict_string()v8.1.0583Bram Moolenaar2018-12-141-3/+3
* patch 8.1.0519: cannot save and restore the tag stackv8.1.0519Bram Moolenaar2018-11-111-0/+13
* patch 8.1.0167: lock flag in new dictitem is reset in many placesv8.1.0167Bram Moolenaar2018-07-081-5/+3