summaryrefslogtreecommitdiff
path: root/src/testdir/test_vim9_builtin.vim
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.2600: Vim9: crash when putting an unknown type in a dictionaryv8.2.2600Bram Moolenaar2021-03-131-0/+20
* patch 8.2.2583: Vim9: cannot compare result of getenv() with nullv8.2.2583Bram Moolenaar2021-03-101-0/+13
* patch 8.2.2537: Vim9: crash when map() failsv8.2.2537Bram Moolenaar2021-02-211-0/+21
* patch 8.2.2497: no error when using more than one character for a registerv8.2.2497Bram Moolenaar2021-02-101-0/+16
* patch 8.2.2479: set/getbufline test fails without the job featurev8.2.2479Bram Moolenaar2021-02-071-5/+7
* patch 8.2.2455: Vim9: key type for literal dict and indexing is inconsistentv8.2.2455Bram Moolenaar2021-02-031-5/+5
* patch 8.2.2449: Vim9: flatten() always changes the list typev8.2.2449Bram Moolenaar2021-02-011-0/+17
* patch 8.2.2443: Vim9: no compile time error for wrong str2float argumentv8.2.2443Bram Moolenaar2021-01-311-0/+12
* patch 8.2.2441: Vim9: extend() does not give an error for a type mismatchv8.2.2441Bram Moolenaar2021-01-311-17/+20
* patch 8.2.2435: setline() gives an error for some typesv8.2.2435Bram Moolenaar2021-01-311-0/+48
* patch 8.2.2434: Vim9: no error when compiling str2nr() with a numberv8.2.2434Bram Moolenaar2021-01-301-0/+7
* patch 8.2.2394: Vim9: min() and max() return type is "any"v8.2.2394Bram Moolenaar2021-01-221-0/+28
* patch 8.2.2387: runtime type check does not mention argument indexv8.2.2387Bram Moolenaar2021-01-211-1/+1
* patch 8.2.2369: Vim9: functions return true/false but can't be used as boolv8.2.2369Bram Moolenaar2021-01-171-0/+20
* patch 8.2.2365: Vim9: no check for map() changing item type at script levelv8.2.2365Bram Moolenaar2021-01-161-21/+39
* patch 8.2.2362: Vim9: check of builtin function argument type is incompletev8.2.2362Bram Moolenaar2021-01-161-0/+3
* patch 8.2.2344: using inclusive index for slice is not always desiredv8.2.2344Bram Moolenaar2021-01-131-0/+23
* patch 8.2.2343: Vim9: return type of readfile() is anyv8.2.2343Bram Moolenaar2021-01-131-0/+26
* patch 8.2.2340: win_execute() unexpectedly returns number zero when failingv8.2.2340Bram Moolenaar2021-01-121-0/+5
* patch 8.2.2339: cannot get the type of a value as a stringv8.2.2339Bram Moolenaar2021-01-121-2/+2
* patch 8.2.2338: Vim9: no error if using job_info() result wronglyv8.2.2338Bram Moolenaar2021-01-121-0/+10
* patch 8.2.2336: Vim9: not possible to extend dictionary with different typev8.2.2336Bram Moolenaar2021-01-121-0/+10
* patch 8.2.2325: Vim9: crash if map() changes the item typev8.2.2325Bram Moolenaar2021-01-101-2/+11
* patch 8.2.2310: Vim9: winsaveview() return type is too genericv8.2.2310Bram Moolenaar2021-01-071-0/+10
* patch 8.2.2285: Vim9: cannot set an option to a falsev8.2.2285Bram Moolenaar2021-01-031-0/+2
* patch 8.2.2284: Vim9: cannot set an option to a boolean valuev8.2.2284Bram Moolenaar2021-01-031-0/+8
* patch 8.2.2272: Vim9: extend() can violate the type of a variablev8.2.2272Bram Moolenaar2021-01-021-0/+51
* patch 8.2.2257: Vim9: using -> for lambda is ambiguousv8.2.2257Bram Moolenaar2020-12-311-14/+14
* patch 8.2.2245: Vim9: return value of winrestcmd() cannot be executedv8.2.2245Bram Moolenaar2020-12-291-0/+10
* patch 8.2.2218: Vim9: failure if passing more args to lambda than expectedv8.2.2218Bram Moolenaar2020-12-251-0/+5
* patch 8.2.2184: Vim9: no error when using "2" for a line numberv8.2.2184Bram Moolenaar2020-12-211-0/+14
* patch 8.2.2133: Vim9: checking for a non-empty string is too strictv8.2.2133Bram Moolenaar2020-12-121-16/+32
* patch 8.2.2117: some functions use any value as a stringv8.2.2117Bram Moolenaar2020-12-091-0/+69
* patch 8.2.2098: Vim9: function argument of sort() and map() not testedv8.2.2098Bram Moolenaar2020-12-051-2/+24
* patch 8.2.2082: Vim9: can still use the depricated #{} dict syntaxv8.2.2082Bram Moolenaar2020-12-021-22/+22
* patch 8.2.2015: Vim9: literal dict #{} is not like any other languagev8.2.2015Bram Moolenaar2020-11-191-1/+1
* patch 8.2.1996: Vim9: invalid error for argument of extend()v8.2.1996Bram Moolenaar2020-11-161-0/+13
* patch 8.2.1931: Vim9: arguments of extend() not checked at compile timev8.2.1931Bram Moolenaar2020-10-311-0/+18
* patch 8.2.1888: Vim9: getbufline(-1, 1, '$') gives an errorv8.2.1888Bram Moolenaar2020-10-221-0/+2
* patch 8.2.1879: Vim9: argument types of insert() not checked when compilingv8.2.1879Bram Moolenaar2020-10-211-1/+8
* patch 8.2.1876: Vim9: argument types are not checked at compile timev8.2.1876Bram Moolenaar2020-10-211-0/+554