summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2022-08-30patch 9.0.0331: cannot use items() on a stringv9.0.0331Bram Moolenaar
Problem: Cannot use items() on a string. Solution: Make items() work on a string. (closes #11016)
2022-08-30patch 9.0.0330: method tests failv9.0.0330Bram Moolenaar
Problem: Method tests fail. Solution: Adjust for change of items().
2022-08-30patch 9.0.0329: ":highlight" hangs when 'cmdheight' is zerov9.0.0329Bram Moolenaar
Problem: ":highlight" hangs when 'cmdheight' is zero. Solution: Add to msg_col when using the message window. (closes #11014)
2022-08-30patch 9.0.0328: OLD_DIGRAPHS is unusedv9.0.0328Bram Moolenaar
Problem: OLD_DIGRAPHS is unused. Solution: Remove OLD_DIGRAPHS. Also drop HPUX_DIGRAPHS.
2022-08-30patch 9.0.0327: items() does not work on a listv9.0.0327Bram Moolenaar
Problem: items() does not work on a list. (Sergey Vlasov) Solution: Make items() work on a list. (closes #11013)
2022-08-30patch 9.0.0326: some changes for cmdheight=0 are not neededv9.0.0326Shougo Matsushita
Problem: Some changes for cmdheight=0 are not needed. Solution: Revert resize behavior if height is greater than the available space. (Shougo Matsushita, closes #11008)
2022-08-29patch 9.0.0325: MS-Windows: completion test failsv9.0.0325Bram Moolenaar
Problem: MS-Windows: completion test fails. Solution: Adjust directory prefix.
2022-08-29patch 9.0.0324: MS-Windows: resolve() test failsv9.0.0324Bram Moolenaar
Problem: MS-Windows: resolve() test fails. Solution: Revert renaming the directory.
2022-08-29patch 9.0.0323: using common name in tests leads to flaky testsv9.0.0323Bram Moolenaar
Problem: Using common name in tests leads to flaky tests. Solution: Rename files and directories to be more specific.
2022-08-29patch 9.0.0322: crash when no errors and 'quickfixtextfunc' is setv9.0.0322Bram Moolenaar
Problem: Crash when no errors and 'quickfixtextfunc' is set. Solution: Do not handle errors if there aren't any.
2022-08-29patch 9.0.0321: cannot use the message popup window directlyv9.0.0321Bram Moolenaar
Problem: Cannot use the message popup window directly. Solution: Add ":echowindow".
2022-08-29patch 9.0.0320: command line type of CmdlineChange differs from getcmdtype()v9.0.0320zeertzjq
Problem: Command line type of CmdlineChange differs from getcmdtype(). Solution: Use the same type. (closes #11005)
2022-08-29patch 9.0.0319: Godot shader files are not recognizedv9.0.0319Maxim Kim
Problem: Godot shader files are not recognized. Solution: Add patterns for "gdshader". (Maxim Kim, closes #11006)
2022-08-29patch 9.0.0318: clearing screen causes flickerv9.0.0318Bram Moolenaar
Problem: Clearing screen causes flicker. Solution: Do not clear but redraw in more cases. Add () to "wait_return".
2022-08-29patch 9.0.0317: when updating the whole screen a popup may not be redrawnv9.0.0317Bram Moolenaar
Problem: When updating the whole screen a popup may not be redrawn. Solution: Mark the screen and windows for redraw also when not clearing. Also mark popup windows for redraw.
2022-08-29patch 9.0.0316: screen flickers when 'cmdheight' is zerov9.0.0316Bram Moolenaar
Problem: Screen flickers when 'cmdheight' is zero. Solution: Redraw over existing text instead of clearing.
2022-08-29patch 9.0.0315: shell command is displayed in message windowv9.0.0315Bram Moolenaar
Problem: Shell command is displayed in message window. Solution: Do not echo the shell command in the message window.
2022-08-29patch 9.0.0314: VDM files are not recognizedv9.0.0314Alessandro Pezzoni
Problem: VDM files are not recognized. Solution: Add patterns for VDM files. (Alessandro Pezzoni, closes #11004)
2022-08-29patch 9.0.0313: using common name in tests leads to flaky testsv9.0.0313Bram Moolenaar
Problem: Using common name in tests leads to flaky tests. Solution: Rename files and directories to be more specific.
2022-08-29patch 9.0.0312: test for cmdheight zero failsv9.0.0312Bram Moolenaar
Problem: Test for cmdheight zero fails. Solution: Do not close the messages window for CTRL-C.
2022-08-28patch 9.0.0311: test for hit-Enter prompt failsv9.0.0311Bram Moolenaar
Problem: Test for hit-Enter prompt fails. Solution: Only reset cmdline_row when 'cmdheight' is zero.
2022-08-28patch 9.0.0310: output of :messages dissappears when cmdheight is zerov9.0.0310Bram Moolenaar
Problem: Output of :messages dissappears when cmdheight is zero. Solution: Do not use the messages window for :messages. Make Esc close the messages window.
2022-08-28patch 9.0.0309: invalid memory access when cmdheight is zerov9.0.0309Bram Moolenaar
Problem: Invalid memory access when cmdheight is zero. Solution: Check index in w_lines is smaller than Rows.
2022-08-28patch 9.0.0308: when cmdheight is zero the attention prompt doesn't showv9.0.0308Bram Moolenaar
Problem: When cmdheight is zero the attention prompt doesn't show. Solution: Do not use the message window for a prompt.
2022-08-28patch 9.0.0307: :echomsg doesn't work properly with cmdheight=0v9.0.0307Bram Moolenaar
Problem: :echomsg doesn't work properly with cmdheight=0. Solution: Improve scrolling and displaying.
2022-08-28patch 9.0.0306: buffer write message is two lines in message popup windowv9.0.0306Bram Moolenaar
Problem: Buffer write message is two lines in message popup window. Solution: Overwrite message if "msg_scroll" is off.
2022-08-28patch 9.0.0305: CI lists useless deprecation warningsv9.0.0305Philip H
Problem: CI lists useless deprecation warnings. Solution: Ignore deprecation warnings. (closes #11003)
2022-08-28patch 9.0.0304: WinScrolled is not triggered when only skipcol changesv9.0.0304zeertzjq
Problem: WinScrolled is not triggered when only skipcol changes. Solution: Add w_last_skipcol and use it. (closes #10998)
2022-08-28patch 9.0.0303: it is not easy to get information about a scriptv9.0.0303Yegappan Lakshmanan
Problem: It is not easy to get information about a script. Solution: Make getscriptinf() return the version. When selecting a specific script return functions and variables. (Yegappan Lakshmanan, closes #10991)
2022-08-28patch 9.0.0302: CI for Coverity is bothered by deprecation warningsv9.0.0302Philip H
Problem: CI for Coverity is bothered by deprecation warnings. Solution: Ignore deprecation warnings. (closes #11002)
2022-08-28patch 9.0.0301: the message window popup is delayed after an error messagev9.0.0301Bram Moolenaar
Problem: The message window popup is delayed after an error message. Solution: Do not set emsg_on_display when using the message window.
2022-08-28patch 9.0.0300: 'cpoptions' tests are flakyv9.0.0300Bram Moolenaar
Problem: 'cpoptions' tests are flaky. Solution: Use a different file name for each test.
2022-08-28patch 9.0.0299: error messages for setcmdline() could be betterv9.0.0299Yegappan Lakshmanan
Problem: Error messages for setcmdline() could be better. Solution: Use more specific error messages. (Yegappan Lakshmanan, closes #10995)
2022-08-28patch 9.0.0298: compiler warning for size_t to int conversionv9.0.0298Wilhelm Payne
Problem: Compiler warning for size_t to int conversion. Solution: Add a type cast. (Wilhelm Payne, closes #11000)
2022-08-28patch 9.0.0297: cursor position wrong after right aligned virtual textv9.0.0297Bram Moolenaar
Problem: Cursor position wrong after right aligned virtual text. (Iizuka Masashi) Solution: Take the width of the column offset into account. (closes #10997) Also fix virtual text positioning.
2022-08-28patch 9.0.0296: message in popup is shortened unnecessaryv9.0.0296Bram Moolenaar
Problem: Message in popup is shortened unnecessary. Solution: Do not use 'showcmd' and 'ruler' for a message in the popup. Set the timer when unhiding the message popup.
2022-08-28patch 9.0.0295: GUI drop files test sometimes failsv9.0.0295Bram Moolenaar
Problem: GUI drop files test sometimes fails. Solution: Mark the test as flaky.
2022-08-28patch 9.0.0294: crash when 'cmdheight' is 0 and popup_clear() usedv9.0.0294Bram Moolenaar
Problem: Crash when 'cmdheight' is 0 and popup_clear() used. Solution: Reset "message_win" when the message popup is cleared. Close the popup when 'cmdheight' is non-zero. Add a screendump test.
2022-08-28patch 9.0.0293: messages window not hidden when starting a command linev9.0.0293Bram Moolenaar
Problem: Messages window not hidden when starting a command line. Solution: Hide the messages window. (closes #10996)
2022-08-27patch 9.0.0292: test causes another test to failv9.0.0292Bram Moolenaar
Problem: Test causes another test to fail. Solution: Redraw to remove the popup window
2022-08-27patch 9.0.0291: test failingv9.0.0291Bram Moolenaar
Problem: Test failing. Solution: Run test with cmdheight=0 last.
2022-08-27patch 9.0.0290: compiler warning for variable set but not usedv9.0.0290Bram Moolenaar
Problem: Compiler warning for variable set but not used. Solution: Add #ifdef.
2022-08-27patch 9.0.0289: invalid memory writev9.0.0289Bram Moolenaar
Problem: Invalid memory write. Solution: Do not put NUL in a static string.
2022-08-27patch 9.0.0288: when 'cmdheight' is zero some messages are not displayedv9.0.0288Bram Moolenaar
Problem: When 'cmdheight' is zero some messages are not displayed. Solution: Use a popup notification window.
2022-08-27patch 9.0.0287: Irix systems no longer existv9.0.0287Yegappan Lakshmanan
Problem: Irix systems no longer exist. Solution: Remove references to Irix. (Yegappan Lakshmanan, closes #10994)
2022-08-27patch 9.0.0286: using freed memory when location list changed in autocmdv9.0.0286Yegappan Lakshmanan
Problem: Using freed memory when location list changed in autocmd. Solution: Return QF_ABORT and handle it. (Yegappan Lakshmanan, closes #10993)
2022-08-27patch 9.0.0285: it is not easy to change the command line from a pluginv9.0.0285Shougo Matsushita
Problem: It is not easy to change the command line from a plugin. Solution: Add setcmdline(). (Shougo Matsushita, closes #10869)
2022-08-26patch 9.0.0284: using static buffer for multiple completion functionsv9.0.0284Bram Moolenaar
Problem: Using static buffer for multiple completion functions. Solution: Use one buffer in expand_T.
2022-08-26patch 9.0.0283: cannot complete "syn list @cluster"v9.0.0283bfredl
Problem: Cannot complete "syn list @cluster". Solution: Recognize and handle "list @". (Björn Linse, closes #10990)
2022-08-26patch 9.0.0282: a nested timout stops the previous timeoutv9.0.0282Bram Moolenaar
Problem: A nested timout stops the previous timeout. Solution: Ignore any nested timeout.