summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.1642: otions test failsv8.2.1642Bram Moolenaar2020-09-092-1/+3
| | | | | Problem: Otions test fails. Solution: Correct call to OptionG().
* patch 8.2.1641: Vim9: cannot use 0 or 1 where a bool is expectedv8.2.1641Bram Moolenaar2020-09-096-1/+27
| | | | | Problem: Vim9: cannot use 0 or 1 where a bool is expected. Solution: Allow using 0 and 1 for a bool type. (closes #6903)
* patch 8.2.1640: Amiga: missing header for getgrgid()v8.2.1640Bram Moolenaar2020-09-092-0/+3
| | | | | Problem: Amiga: missing header for getgrgid(). Solution: Add the grp.h header. (Ola Söder, closes #6906)
* patch 8.2.1639: options window cannot be translatedv8.2.1639Bram Moolenaar2020-09-092-105/+110
| | | | | | Problem: Options window cannot be translated. Solution: Get the translation for "local to" texts once and use them in many places. Fix that 'whichwrap' is not a local option. (issue #6800)
* patch 8.2.1638: leaking memory when popup filter function can't be calledv8.2.1638Bram Moolenaar2020-09-082-21/+25
| | | | | Problem: Leaking memory when popup filter function can't be called. Solution: Don't return too soon.
* patch 8.2.1637: Vim9: :put ={expr} does not work inside :def functionv8.2.1637Bram Moolenaar2020-09-0812-13/+158
| | | | | Problem: Vim9: :put ={expr} does not work inside :def function. Solution: Add ISN_PUT. (closes #6397)
* patch 8.2.1636: get stuck if a popup filter causes an errorv8.2.1636Bram Moolenaar2020-09-087-3/+99
| | | | | | Problem: Get stuck if a popup filter causes an error. Solution: Check whether the function can be called and does not cause an error. (closes #6902)
* patch 8.2.1635: no digraph for 0x2022 BULLETv8.2.1635Bram Moolenaar2020-09-083-0/+4
| | | | | Problem: No digraph for 0x2022 BULLET. Solution: Use "oo". (Hans Ginzel, closes #6904)
* Update runtime files.Bram Moolenaar2020-09-0735-307/+1272
|
* patch 8.2.1634: loop to handle keys for the command line is too longv8.2.1634Bram Moolenaar2020-09-073-215/+277
| | | | | | Problem: Loop to handle keys for the command line is too long. Solution: Move a few more parts to separate functions. (Yegappan Lakshmanan, closes #6895)
* patch 8.2.1633: some error messages are internal but do not use iemsg()v8.2.1633Bram Moolenaar2020-09-074-7/+9
| | | | | Problem: Some error messages are internal but do not use iemsg(). Solution: Use iemsg(). (Dominique Pellé, closes #6894)
* patch 8.2.1632: not checking the context of test_fails()v8.2.1632Bram Moolenaar2020-09-066-29/+63
| | | | | | Problem: Not checking the context of test_fails(). Solution: Add the line number and context arguments. Give error if assert_fails() argument types are wrong.
* patch 8.2.1631: test_fails() does not check the context of the line numberv8.2.1631Bram Moolenaar2020-09-067-26/+50
| | | | | Problem: test_fails() does not check the context of the line number. Solution: Use another argument to specify the context of the line number.
* patch 8.2.1630: terminal test failsv8.2.1630Bram Moolenaar2020-09-063-3/+5
| | | | | Problem: Terminal test fails. Solution: Correct argument to term_start(). Correct error number.
* patch 8.2.1629: test fails without terminal featurev8.2.1629Bram Moolenaar2020-09-062-8/+18
| | | | | Problem: Test fails without terminal feature. Solution: Check for terminal feature.
* patch 8.2.1628: Vim9: cannot pass "true" to timer_paused()v8.2.1628Bram Moolenaar2020-09-063-1/+11
| | | | | Problem: Vim9: cannot pass "true" to timer_paused(). Solution: Use tv_get_bool(). (closes #6891)
* patch 8.2.1627: Vim9: cannot pass "true" to submatch/term_gettty/term_startv8.2.1627Bram Moolenaar2020-09-065-3/+28
| | | | | | Problem: Vim9: cannot pass "true" to submatch(), term_gettty() and term_start() Solution: Use tv_get_bool_chk(). (closes #6888, closes #6890, closes #6889)
* patch 8.2.1626: test for strchars() fails with different error numberv8.2.1626Bram Moolenaar2020-09-062-1/+3
| | | | | Problem: Test for strchars() fails with different error number. Solution: Adjust the error number.
* patch 8.2.1625: compiler warning for use of fptr_Tv8.2.1625Bram Moolenaar2020-09-062-2/+4
| | | | | Problem: Compiler warning for use of fptr_T. Solution: Make the type less strict.
* patch 8.2.1624: Vim9: cannot pass "true" to split(), str2nr() and strchars()v8.2.1624Bram Moolenaar2020-09-063-4/+18
| | | | | Problem: Vim9: cannot pass "true" to split(), str2nr() and strchars(). Solution: Use tv_get_bool_chk(). (closes #6884, closes #6885, closes #6886)
* patch 8.2.1623: Vim9: using :call where it is not neededv8.2.1623Bram Moolenaar2020-09-067-261/+263
| | | | | Problem: Vim9: using :call where it is not needed. Solution: Remove :call. (closes #6892)
* patch 8.2.1622: loop to handle keys for the command line is too longv8.2.1622Bram Moolenaar2020-09-062-383/+504
| | | | | Problem: Loop to handle keys for the command line is too long. Solution: Move code to functions. (Yegappan Lakshmanan, closes #6880)
* patch 8.2.1621: crash when using submatch(0, 1) in substitute()v8.2.1621Bram Moolenaar2020-09-063-0/+9
| | | | | Problem: Crash when using submatch(0, 1) in substitute(). Solution: Increment reference count. (closes #6887)
* patch 8.2.1620: searchcount() test failsv8.2.1620Bram Moolenaar2020-09-052-1/+3
| | | | | Problem: searchcount() test fails. Solution: Restore default flag value.
* patch 8.2.1619: Vim9: cannot pass "true" to spellsuggest()v8.2.1619Bram Moolenaar2020-09-053-1/+11
| | | | | Problem: Vim9: cannot pass "true" to spellsuggest(). Solution: Use tv_get_bool_chk(). (closes #6883)
* patch 8.2.1618: Vim9: cannot pass "true" to setloclist()v8.2.1618Bram Moolenaar2020-09-053-1/+10
| | | | | Problem: Vim9: cannot pass "true" to setloclist(). Solution: Use dict_get_bool(). (closes #6882)
* patch 8.2.1617: Vim9: cannot pass "true" to win_splitmove()v8.2.1617Bram Moolenaar2020-09-053-126/+138
| | | | | Problem: Vim9: cannot pass "true" to win_splitmove(). Solution: Use dict_get_bool(). (closes #6862) Alphabetize test functions.
* patch 8.2.1616: Vim9: cannot pass "true" to synID()v8.2.1616Bram Moolenaar2020-09-053-1/+10
| | | | | Problem: Vim9: cannot pass "true" to synID(). Solution: Use tv_get_bool_chk(). (closes #6860)
* patch 8.2.1615: Vim9: cannot pass "true" to searchdecl()v8.2.1615Bram Moolenaar2020-09-053-4/+10
| | | | | Problem: Vim9: cannot pass "true" to searchdecl(). Solution: use tv_get_bool_chk(). (closes #6881)
* patch 8.2.1614: Vim9: cannot pass "true" to searchcount()v8.2.1614Bram Moolenaar2020-09-053-8/+18
| | | | | Problem: Vim9: cannot pass "true" to searchcount(). Solution: Use tv_get_bool_chk(). (closes #6854)
* patch 8.2.1613: Vim9: cannot pass "true" to prop_type_add()v8.2.1613Bram Moolenaar2020-09-053-3/+16
| | | | | Problem: Vim9: cannot pass "true" to prop_type_add(). Solution: Use tv_get_bool(). (closes #6850)
* patch 8.2.1612: Vim9: cannot pass "true" to prop_remove()v8.2.1612Bram Moolenaar2020-09-053-8/+16
| | | | | Problem: Vim9: cannot pass "true" to prop_remove(). Solution: Use dict_get_bool(). (closes #6853)
* patch 8.2.1611: Vim9: cannot pass "true" to nr2char()v8.2.1611Bram Moolenaar2020-09-053-1/+7
| | | | | Problem: Vim9: cannot pass "true" to nr2char(). Solution: use tv_get_bool_chk(). (closes #6878)
* patch 8.2.1610: Vim9: cannot pass "true" to list2str() and str2list()v8.2.1610Bram Moolenaar2020-09-054-2/+11
| | | | | Problem: Vim9: cannot pass "true" to list2str() and str2list(). Solution: Use tv_get_bool_chk(). (closes #6877)
* patch 8.2.1609: Vim9: test fails when build without +channelv8.2.1609Bram Moolenaar2020-09-052-10/+23
| | | | | Problem: Vim9: test fails when build without +channel. Solution: Add check for +channel. (closes #6879)
* patch 8.2.1608: Vim9: getchar() test fails with GUIv8.2.1608Bram Moolenaar2020-09-052-3/+7
| | | | | Problem: Vim9: getchar() test fails with GUI. Solution: Avoid that getchar(0) gets stuck on K_IGNORE.
* patch 8.2.1607: Vim9: getchar() test fails on MS-Windowsv8.2.1607Bram Moolenaar2020-09-052-0/+4
| | | | | Problem: Vim9: getchar() test fails on MS-Windows. Solution: First consume any available input.
* patch 8.2.1606: Vim9: cannot use "true" with has()v8.2.1606Bram Moolenaar2020-09-053-1/+7
| | | | | Problem: Vim9: cannot use "true" with has(). Solution: Use tv_get_bool(). (closes #6876)
* patch 8.2.1605: default maintainer on github is wrongv8.2.1605Bram Moolenaar2020-09-052-1/+3
| | | | | Problem: Defyyyyyyyyyyyyyyyyyyyyyyyub is wrong. Solution: Use Bram's account.
* patch 8.2.1604: Vim9: cannot use "true" with getcompletion()v8.2.1604Bram Moolenaar2020-09-053-1/+10
| | | | | Problem: Vim9: cannot use "true" with getcompletion(). Solution: use tv_get_bool_chk(). (closes #6875)
* patch 8.2.1603: Vim9: cannot use "true" with getchar()v8.2.1603Bram Moolenaar2020-09-053-1/+7
| | | | | Problem: Vim9: cannot use "true" with getchar(). Solution: use tv_get_bool_chk(). (closes #6874)
* patch 8.2.1602: Vim9: cannot use 'true" with getbufinfo()v8.2.1602Bram Moolenaar2020-09-053-15/+14
| | | | | Problem: Vim9: cannot use 'true" with getbufinfo(). Solution: Use dict_get_bool(). (closes #6873)
* patch 8.2.1601: Vim9: cannot use 'true" with garbagecollect()v8.2.1601Bram Moolenaar2020-09-053-1/+7
| | | | | Problem: Vim9: cannot use 'true" with garbagecollect(). Solution: Use tv_get_bool(). (closes #6871)
* patch 8.2.1600: Vim9: cannot use "true" with deepcopy()v8.2.1600Bram Moolenaar2020-09-054-2/+6
| | | | | Problem: Vim9: cannot use "true" with deepcopy(). Solution: Use tv_get_bool_chk(). (closes #6867)
* patch 8.2.1599: missing line end when skipping a long line with :cgetfilev8.2.1599Bram Moolenaar2020-09-053-1/+21
| | | | | Problem: Missing line end when skipping a long line with :cgetfile. Solution: Fix off-by-one error. (closes #6870)
* patch 8.2.1598: starting a hidden terminal resizes the current windowv8.2.1598Bram Moolenaar2020-09-053-10/+26
| | | | | | Problem: Starting a hidden terminal resizes the current window. Solution: Do not resize the current window for a hidden terminal. (closes #6872)
* patch 8.2.1597: the channel source file is too bigv8.2.1597Bram Moolenaar2020-09-0515-1960/+2002
| | | | | Problem: The channel source file is too big. Solution: Move job related code to a new source file.
* patch 8.2.1596: using win_screenpos('.') in tests works but is wrongv8.2.1596Bram Moolenaar2020-09-052-1/+3
| | | | | Problem: Using win_screenpos('.') in tests works but is wrong. Solution: Use win_screenpos(0).
* patch 8.2.1595: cannot easily see what Vim sends to the terminalv8.2.1595Bram Moolenaar2020-09-056-4/+73
| | | | | | Problem: Cannot easily see what Vim sends to the terminal. Solution: Write output to the channel log if it contains terminal control sequences. Avoid warnings for tputs() argument.
* patch 8.2.1594: pull requests on github do not notify a maintainerv8.2.1594Bram Moolenaar2020-09-053-0/+53
| | | | | Problem: Pull requests on github do not notify a maintainer. Solution: Add a CODEOWNERS file with a few initial entries.