summaryrefslogtreecommitdiff
path: root/src/evalfunc.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.2394: Vim9: min() and max() return type is "any"v8.2.2394Bram Moolenaar2021-01-221-2/+2
* patch 8.2.2369: Vim9: functions return true/false but can't be used as boolv8.2.2369Bram Moolenaar2021-01-171-69/+74
* patch 8.2.2367: test failures on some less often used systemsv8.2.2367Bram Moolenaar2021-01-171-6/+6
* patch 8.2.2363: curpos() does not accept a string argument as beforev8.2.2363Bram Moolenaar2021-01-161-1/+2
* patch 8.2.2362: Vim9: check of builtin function argument type is incompletev8.2.2362Bram Moolenaar2021-01-161-6/+28
* patch 8.2.2344: using inclusive index for slice is not always desiredv8.2.2344Bram Moolenaar2021-01-131-0/+2
* patch 8.2.2343: Vim9: return type of readfile() is anyv8.2.2343Bram Moolenaar2021-01-131-1/+3
* patch 8.2.2342: "char" functions may return wrong column in Insert modev8.2.2342Bram Moolenaar2021-01-131-3/+3
* patch 8.2.2341: expresison command line completion incomplete after "g:"v8.2.2341Bram Moolenaar2021-01-131-0/+4
* patch 8.2.2339: cannot get the type of a value as a stringv8.2.2339Bram Moolenaar2021-01-121-0/+2
* patch 8.2.2338: Vim9: no error if using job_info() result wronglyv8.2.2338Bram Moolenaar2021-01-121-1/+8
* patch 8.2.2336: Vim9: not possible to extend dictionary with different typev8.2.2336Bram Moolenaar2021-01-121-1/+19
* patch 8.2.2325: Vim9: crash if map() changes the item typev8.2.2325Bram Moolenaar2021-01-101-0/+9
* patch 8.2.2324: not easy to get mark en cursor posotion by character countv8.2.2324Bram Moolenaar2021-01-101-149/+257
* patch 8.2.2310: Vim9: winsaveview() return type is too genericv8.2.2310Bram Moolenaar2021-01-071-1/+1
* patch 8.2.2306: Vim9: when using function reference type is not checkedv8.2.2306Bram Moolenaar2021-01-061-1/+2
* patch 8.2.2289: Vim9: 'cpo' can become emptyv8.2.2289Bram Moolenaar2021-01-031-2/+8
* patch 8.2.2233: cannot convert a byte index into a character indexv8.2.2233Bram Moolenaar2020-12-281-0/+54
* patch 8.2.2184: Vim9: no error when using "2" for a line numberv8.2.2184Bram Moolenaar2020-12-211-0/+2
* patch 8.2.1996: Vim9: invalid error for argument of extend()v8.2.1996Bram Moolenaar2020-11-161-4/+4
* patch 8.2.1974: Vim9: test for has('gui_running') fails with VIMDLLv8.2.1974Bram Moolenaar2020-11-101-1/+1
* patch 8.2.1969: Vim9: map() may change the list or dict item typev8.2.1969Bram Moolenaar2020-11-091-2/+15
* patch 8.2.1968: Vim9: has() assumes a feature does not change dynamicallyv8.2.1968Bram Moolenaar2020-11-081-0/+67
* patch 8.2.1960: warning for uninitialized variablev8.2.1960Bram Moolenaar2020-11-051-1/+1
* patch 8.2.1931: Vim9: arguments of extend() not checked at compile timev8.2.1931Bram Moolenaar2020-10-311-3/+64
* patch 8.2.1884: compiler warning for uninitialized variablev8.2.1884Bram Moolenaar2020-10-221-0/+6
* patch 8.2.1879: Vim9: argument types of insert() not checked when compilingv8.2.1879Bram Moolenaar2020-10-211-6/+47
* patch 8.2.1877: test for function list failsv8.2.1877Bram Moolenaar2020-10-211-14/+14
* patch 8.2.1876: Vim9: argument types are not checked at compile timev8.2.1876Bram Moolenaar2020-10-211-507/+1075
* patch 8.2.1858: Vim9: filter functions return number instead of boolv8.2.1858Bram Moolenaar2020-10-171-2/+7
* patch 8.2.1771: synIDattr() cannot get the value of ctermulv8.2.1771Bram Moolenaar2020-09-291-1/+3
* patch 8.2.1769: popup filter interferes with using :normal to move the cursorv8.2.1769Bram Moolenaar2020-09-281-4/+4
* patch 8.2.1751: using 2 where bool is expected may throw an errorv8.2.1751Bram Moolenaar2020-09-261-2/+2
* patch 8.2.1747: result of expand() unexpectedly depends on 'completeslash'v8.2.1747Bram Moolenaar2020-09-261-0/+9
* patch 8.2.1741: pathshorten() only supports using one characterv8.2.1741Bram Moolenaar2020-09-251-1/+1
* patch 8.2.1729: endless loop when ":normal" feeds popup window filterv8.2.1729Bram Moolenaar2020-09-231-0/+6
* patch 8.2.1727: a popup created with "cursorline" will ignore "firstline"v8.2.1727Bram Moolenaar2020-09-221-7/+18
* patch 8.2.1726: fuzzy matching only works on stringsv8.2.1726Bram Moolenaar2020-09-221-1/+2
* patch 8.2.1691: Vim9: list<any> is not accepted where list<number> is expectedv8.2.1691Bram Moolenaar2020-09-161-6/+9
* patch 8.2.1665: cannot do fuzzy string matchingv8.2.1665Bram Moolenaar2020-09-111-0/+1
* patch 8.2.1631: test_fails() does not check the context of the line numberv8.2.1631Bram Moolenaar2020-09-061-1/+1
* patch 8.2.1627: Vim9: cannot pass "true" to submatch/term_gettty/term_startv8.2.1627Bram Moolenaar2020-09-061-1/+1
* patch 8.2.1624: Vim9: cannot pass "true" to split(), str2nr() and strchars()v8.2.1624Bram Moolenaar2020-09-061-4/+4
* patch 8.2.1619: Vim9: cannot pass "true" to spellsuggest()v8.2.1619Bram Moolenaar2020-09-051-1/+1
* patch 8.2.1616: Vim9: cannot pass "true" to synID()v8.2.1616Bram Moolenaar2020-09-051-1/+1
* patch 8.2.1615: Vim9: cannot pass "true" to searchdecl()v8.2.1615Bram Moolenaar2020-09-051-4/+4
* patch 8.2.1611: Vim9: cannot pass "true" to nr2char()v8.2.1611Bram Moolenaar2020-09-051-1/+1
* patch 8.2.1610: Vim9: cannot pass "true" to list2str() and str2list()v8.2.1610Bram Moolenaar2020-09-051-1/+1
* patch 8.2.1606: Vim9: cannot use "true" with has()v8.2.1606Bram Moolenaar2020-09-051-1/+1
* patch 8.2.1601: Vim9: cannot use 'true" with garbagecollect()v8.2.1601Bram Moolenaar2020-09-051-1/+1