summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
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.
2022-08-26patch 9.0.0281: build failure without the +eval featurev9.0.0281Bram Moolenaar
Problem: Build failure without the +eval feature. Solution: Add #ifdef.
2022-08-26Update runtime filesBram Moolenaar
2022-08-26patch 9.0.0280: the builtin termcap list depends on the versionv9.0.0280Bram Moolenaar
Problem: The builtin termcap list depends on the version. Solution: Always include all termcap entries. Remove duplicate lines.
2022-08-26patch 9.0.0279: the tiny version has the popup menu but not 'wildmenu'v9.0.0279Bram Moolenaar
Problem: The tiny version has the popup menu but not 'wildmenu'. Solution: Graduate the wildmenu feature.
2022-08-26patch 9.0.0278: the +wildignore feature is nearly always availablev9.0.0278Bram Moolenaar
Problem: The +wildignore feature is nearly always available. Solution: Graduate +wildignore for consistency.
2022-08-26patch 9.0.0277: Coverity CI: update-alternatives not needed with Ubuntu 20.04v9.0.0277Philip H
Problem: Coverity CI: update-alternatives not needed with Ubuntu 20.04. Solution: Remove update-alternatives for Lua. (closes #10987)
2022-08-26patch 9.0.0276: 'buftype' values not sufficiently testedv9.0.0276zeertzjq
Problem: 'buftype' values not sufficiently tested. Solution: Add and extend tests with 'buftype' values. (closes #10988)
2022-08-26patch 9.0.0275: BufEnter not triggered when using ":edit" in "nofile" bufferv9.0.0275Bram Moolenaar
Problem: BufEnter not triggered when using ":edit" in "nofile" buffer. Solution: Let readfile() return NOTDONE. (closes #10986)
2022-08-26patch 9.0.0274: netrw plugin does not show remote filesv9.0.0274Bram Moolenaar
Problem: Netrw plugin does not show remote files. Solution: Do read a file when 'buftype' is "acwrite". (closes #10983)
2022-08-26patch 9.0.0273: Konsole termresponse not recognizedv9.0.0273Bram Moolenaar
Problem: Konsole termresponse not recognized. Solution: Handle Konsole like libvterm, set 'ttymouse' to "sgr". (closes #10990)
2022-08-26patch 9.0.0272: BufReadCmd not triggered when loading a "nofile" bufferv9.0.0272Bram Moolenaar
Problem: BufReadCmd not triggered when loading a "nofile" buffer. (Maxim Kim) Solution: Call readfile() but bail out before reading a file. (closes #10983)
2022-08-26patch 9.0.0271: using INIT() in non-header filesv9.0.0271zeertzjq
Problem: Using INIT() in non-header files. Solution: Remove INIT(). (closes #10981)
2022-08-25patch 9.0.0270: some values of 'path' and 'tags' invalid in the tiny versionv9.0.0270Bram Moolenaar
Problem: Some values of 'path' and 'tags' do not work in the tiny version. Solution: Graduate the +path_extra feature.
2022-08-25patch 9.0.0269: getscriptinfo() does not include the versionv9.0.0269Yegappan Lakshmanan
Problem: getscriptinfo() does not include the version. Cannot select entries by script name. Solution: Add the "version" item and the "name" argument. (Yegappan Lakshmanan, closes #10962)
2022-08-25patch 9.0.0268: build error without the +eval featurev9.0.0268Bram Moolenaar
Problem: Build error without the +eval feature. Solution: Remove #ifdef.
2022-08-25patch 9.0.0267: Coverity workflow still uses Ubuntu 18.04v9.0.0267Philip H
Problem: Coverity workflow still uses Ubuntu 18.04. Solution: Use Ubuntu 20.04
2022-08-25patch 9.0.0266: compiler warning for unused argumentv9.0.0266Bram Moolenaar
Problem: Compiler warning for unused argument. Solution: Add UNUSED.
2022-08-25patch 9.0.0265: no good reason why the "gf" command isn't in the tiny versionv9.0.0265Bram Moolenaar
Problem: No good reason why the "gf" command is not in the tiny version. Solution: Graduate the file_in_path feature.
2022-08-25patch 9.0.0264: CI still runs on Ubuntu 18.04v9.0.0264Philip H
Problem: CI still runs on Ubuntu 18.04. Solution: Run CI on Ubuntu 20.04. (closes #10582)
2022-08-25patch 9.0.0263: too many #ifdefsv9.0.0263Bram Moolenaar
Problem: Too many #ifdefs. Solution: Make some functions always available.
2022-08-25patch 9.0.0262: build failure without the +quickfix featurev9.0.0262Bram Moolenaar
Problem: Build failure without the +quickfix feature. Solution: Add #ifdef.
2022-08-25patch 9.0.0261: bufload() reads a file even if the name is not a file namev9.0.0261Bram Moolenaar
Problem: bufload() reads a file even if the name is not a file name. (Cyker Way) Solution: Do not read the file when the buffer name is not a file name. (closes #10975)
2022-08-24patch 9.0.0260: using freed memory when using 'quickfixtextfunc' recursivelyv9.0.0260Bram Moolenaar
Problem: Using freed memory when using 'quickfixtextfunc' recursively. Solution: Do not allow for recursion.
2022-08-24patch 9.0.0259: crash with mouse click when not initializedv9.0.0259Bram Moolenaar
Problem: Crash with mouse click when not initialized. Solution: Check TabPageIdxs[] is not NULL.
2022-08-24Update runtime filesBram Moolenaar