summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2023-05-24patch 9.0.1576: users may not know what to do with an internal errorv9.0.1576Bram Moolenaar
Problem: Users may not know what to do with an internal error. Solution: Add a translated message with instructions.
2023-05-23patch 9.0.1575: "file N of M" message is not translatedv9.0.1575Bram Moolenaar
Problem: "file N of M" message is not translated. Solution: Make argument count message translatable. (close #12429)
2023-05-23patch 9.0.1574: MS-Windows: list of translation input files incompletev9.0.1574Bram Moolenaar
Problem: MS-Windows: list of translation input files incomplete. Solution: Move the list of files to a common file. (closes #12426)
2023-05-23patch 9.0.1573: error for function name has wrong line numberv9.0.1573Bram Moolenaar
Problem: Error for function name has wrong line number. Solution: Set the line number before giving the error.
2023-05-20patch 9.0.1572: error messages are not translatedv9.0.1572Bram Moolenaar
Problem: Error messages are not translated. Solution: Add _().
2023-05-20patch 9.0.1571: RedrawingDisabled not used consistentlyv9.0.1571Bram Moolenaar
Problem: RedrawingDisabled not used consistently. Solution: Avoid RedrawingDisabled going negative. Set RedrawingDisabled in win_split_ins(). (closes #11961)
2023-05-19patch 9.0.1570: some tests are slowv9.0.1570Bram Moolenaar
Problem: Some tests are slow. Solution: Make a few test cases faster.
2023-05-19patch 9.0.1569: cannot use "this.member" in lambda in class methodv9.0.1569h-east
Problem: Cannot use "this.member" in lambda in class method. Solution: Adjust check for reserved keyword. (Hirohito Higashi, closes #12416, closes #12076, closes #12336)
2023-05-19patch 9.0.1568: with 'smoothscroll' cursor may move below botlinev9.0.1568Luuk van Baal
Problem: With 'smoothscroll' cursor may move below botline. Solution: Call redraw_later() if needed, Compute cursor row with adjusted condition. (Luuk van Baal, closes #12415)
2023-05-19patch 9.0.1567: profiler calculation may be wrong on 32 bit buildsv9.0.1567Isao Sato
Problem: Profiler calculation may be wrong on 32 bit builds. Solution: Use 64 bit variable if possible. (Isao Sato, closes #12412)
2023-05-18patch 9.0.1566: Motif: GUI scrollbar test fails in 24 lines terminalv9.0.1566Bram Moolenaar
Problem: Motif: GUI scrollbar test fails in 24 lines terminal. Solution: Skip the part of the test that fails for now.
2023-05-18patch 9.0.1565: json lines files are not recognizedv9.0.1565Bram Moolenaar
Problem: Json lines files are not recognized. Solution: Add a pattern to detect "jsonl" files. (issue #7520)
2023-05-18patch 9.0.1564: display moves up and down with 'incsearch' and 'smoothscroll'v9.0.1564Luuk van Baal
Problem: Display moves up and down with 'incsearch' and 'smoothscroll'. Solution: Do not check if w_skipcol changed. (Luuk van Baal, closes #12410, closes #12409)
2023-05-16patch 9.0.1563: GTK3: window manager resize hints are incompletev9.0.1563Bram Moolenaar
Problem: GTK3: window manager resize hints are incomplete. Solution: Use NULL for second argument of gtk_window_set_geometry_hints(). (Kenny Stauffer closes #11055)
2023-05-16patch 9.0.1562: mixing package managers is not a good ideav9.0.1562Philip H
Problem: Mixing package managers is not a good idea. Solution: Install gcc 13 with apt-get. (closes #12405)
2023-05-15patch 9.0.1561: display wrong when moving cursor to above the top linev9.0.1561Luuk van Baal
Problem: Display wrong when moving cursor to above the top line and 'smoothscroll' is set. Solution: Call adjust_skipcol() in more places and make it work better. (Luuk van Baal, closes #12395)
2023-05-15patch 9.0.1560: Win32: When 'encoding' is set $PATH has duplicate entriesv9.0.1560K.Takata
Problem: Win32: When 'encoding' is set $PATH has duplicate entries. Solution: Only append the directory if it is not there yet. (Ken Takata, closes #12400, closes #12372)
2023-05-15patch 9.0.1559: function argument types not always checkedv9.0.1559Bram Moolenaar
Problem: Function argument types not always checked and using v:none may cause an error. Solution: Check argument types once the function type is known. Do not give an error for using v:none as an argument. (closes #12200)
2023-05-14patch 9.0.1558: wrong error for unreachable code after :throwv9.0.1558Bram Moolenaar
Problem: Wrong error for unreachable code after :throw. Solution: Adjust the error message.
2023-05-14patch 9.0.1557: test failures for unreachable codev9.0.1557Bram Moolenaar
Problem: Test failures for unreachable code. Solution: Add a test override to ignore unreachable code.
2023-05-14patch 9.0.1556: Vim9: error for missing "return" after "throw"v9.0.1556Bram Moolenaar
Problem: Vim9: error for missing "return" after "throw". Solution: Set had_return flag for "throw". (closes #12262)
2023-05-14Update runtime filesBram Moolenaar
2023-05-14patch 9.0.1555: setcharsearch() does not clear last searched char properlyv9.0.1555zeertzjq
Problem: setcharsearch() does not clear last searched char properly. Solution: Do not accept lastc_bytelen smaller than one. (closes #12398)
2023-05-14patch 9.0.1554: code for handling 'switchbuf' is repeatedv9.0.1554Yegappan Lakshmanan
Problem: Code for handling 'switchbuf' is repeated. Solution: Add a function to handle 'switchbuf'. (Yegappan Lakshmanan, closes #12397)
2023-05-13patch 9.0.1553: CI: using slightly outdated gcc versionv9.0.1553Philip H
Problem: CI: using slightly outdated gcc version. Solution: Use "brew" to get a more recent gcc version. (closes #12391)
2023-05-13patch 9.0.1552: CI: sound-dummy module is not installedv9.0.1552Philip H
Problem: CI: sound-dummy module is not installed. Solution: Invert using the result of the condition. (closes #12394)
2023-05-13patch 9.0.1551: position of marker for 'smoothscroll' not computed correctlyv9.0.1551Luuk van Baal
Problem: Position of marker for 'smoothscroll' not computed correctly. Solution: Take 'list' and other options into account. (Luuk van Baal, closes #12393)
2023-05-13patch 9.0.1550: in cmdline window S-Tab does not select previous completionv9.0.1550Bram Moolenaar
Problem: In cmdline window S-Tab does not select previous completion. (Maxim Kim) Solution: Add a mappint for S-Tab. (closes #12116)
2023-05-13patch 9.0.1549: USD filetype is not recognizedv9.0.1549Colin Kennedy
Problem: USD filetype is not recognized. Solution: Add patterns for USD filetype. (Colin Kennedy, closes #12370)
2023-05-13patch 9.0.1548: CI: check in sound-dummy module may throw an errorv9.0.1548Christian Brabandt
Problem: CI: check in sound-dummy module may throw an error. Solution: Check whether apt-cache can show the package description. (Christian Brabandt, closes #12390)
2023-05-12patch 9.0.1547: Coveralls workflow on CI is commented outv9.0.1547Philip H
Problem: Coveralls workflow on CI is commented out. Solution: Remove the Coveralls workflow. (closes #12389)
2023-05-12patch 9.0.1546: some commands for opening a file don't use 'switchbuf'v9.0.1546Yegappan Lakshmanan
Problem: Some commands for opening a file don't use 'switchbuf'. Solution: Use 'switchbuf' for more commands. (Yegappan Lakshmanan, closes #12383, closes #12381)
2023-05-12patch 9.0.1545: text not scrolled when cursor moved with "g0" and "h"v9.0.1545Luuk van Baal
Problem: Text not scrolled when cursor moved with "g0" and "h". Solution: Adjust w_skipcol when needed. (Luuk van Baal, closes #12387)
2023-05-11patch 9.0.1544: recent glibc marks sigset() as a deprecatedv9.0.1544ichizok
Problem: Recent glibc marks sigset() as a deprecated. Solution: Use sigaction() in mch_signal() if possible. (Ozaki Kiichi, closes #12373)
2023-05-11patch 9.0.1543: display errors when making topline shorterv9.0.1543Luuk van Baal
Problem: Display errors when making topline shorter and 'smoothscroll' is set. Solution: Reset w_skipcol when the topline becomes shorter than its current value. (Luuk van Baal, closes #12367)
2023-05-11patch 9.0.1542: line not fully displayed if it doesn't fit in the screenv9.0.1542Luuk van Baal
Problem: Line not fully displayed if it doesn't fit in the screen. Solution: Do not reset s_skipcol if not needed. (Luuk van Baal, closes #12376)
2023-05-11patch 9.0.1541: CI: sound dummy is disabledv9.0.1541Philip H
Problem: CI: sound dummy is disabled. Solution: Make sound dummy work again. (closes #12380)
2023-05-11patch 9.0.1540: reverse() on string doesn't work in compiled functionv9.0.1540Yegappan Lakshmanan
Problem: reverse() on string doesn't work in compiled function. Solution: Accept string in argument type check. (Yegappan Lakshmanan, closes #12377)
2023-05-10patch 9.0.1539: typst filetype is not recognizedv9.0.1539Gaetan Lepage
Problem: Typst filetype is not recognized. Solution: Distinguish between sql and typst. (Gaetan Lepage, closes #12363)
2023-05-10patch 9.0.1538: :wqall does not trigger ExitPrev9.0.1538Bram Moolenaar
Problem: :wqall does not trigger ExitPre. (Bart Libert) Solution: Move preparations for :qall to a common function. (closes #12374)
2023-05-10patch 9.0.1537: message for opening the cmdline window is not translatedv9.0.1537Bram Moolenaar
Problem: Message for opening the cmdline window is not translated. Solution: Add gettext() and scan the defaults script for text to be translated. (closes #12371)
2023-05-09patch 9.0.1536: CI: sound dummy stopped workingv9.0.1536Bram Moolenaar
Problem: CI: sound dummy stopped working. Solution: Temporarily stop using sound dummy.
2023-05-09patch 9.0.1535: test commented out in a wrong wayv9.0.1535Bram Moolenaar
Problem: Test commented out in a wrong way. Solution: Use legacy script comment character.
2023-05-09patch 9.0.1534: test for expanding "~" in substitute takes too longv9.0.1534Bram Moolenaar
Problem: Test for expanding "~" in substitute takes too long. Solution: Disable the test for now.
2023-05-09patch 9.0.1533: test for 'smoothscroll' is ineffectivev9.0.1533Luuk van Baal
Problem: Test for 'smoothscroll' is ineffective. Solution: Change the order of testing "zb" and "zt". (Luuk van Baal, closes #12366)
2023-05-09patch 9.0.1532: crash when expanding "~" in substitute causes very long textv9.0.1532Bram Moolenaar
Problem: Crash when expanding "~" in substitute causes very long text. Solution: Limit the text length to MAXCOL.
2023-05-09patch 9.0.1531: crash when register contents ends up being invalidv9.0.1531Bram Moolenaar
Problem: Crash when register contents ends up being invalid. Solution: Check "y_array" is not NULL.
2023-05-09patch 9.0.1530: cursor moves to wrong line when 'foldmethod' is "diff"v9.0.1530Luuk van Baal
Problem: Cursor moves to wrong line when 'foldmethod' is "diff". (Rick Howe) Solution: Adjust logic for scrolling. (Luuk van Baal, closes #12364, closes #12218)
2023-05-09patch 9.0.1529: code style test doesn't check for space after "if"v9.0.1529Bram Moolenaar
Problem: Code style test doesn't check for space after "if". Solution: Add a test for space.
2023-05-08patch 9.0.1528: libsodium encryption is only used with "huge" featuresv9.0.1528Bram Moolenaar
Problem: Libsodium encryption is only used with "huge" features, even when manually enabled through configure. (Tony Mechelynck) Solution: Remove the condition on FEAT_HUGE.