summaryrefslogtreecommitdiffstats
path: root/src/version.c
AgeCommit message (Collapse)Author
2022-09-16patch 9.0.0476: varargs does not work for replacement function of substitute()v9.0.0476zeertzjq
Problem: Varargs does not work for replacement function of substitute(). Solution: Check the varargs flag of the function. (closes #11142)
2022-09-15patch 9.0.0475: not using deferred delete in testsv9.0.0475Bram Moolenaar
Problem: Not using deferred delete in tests. Solution: Use deferred delete more often.
2022-09-15patch 9.0.0474: fullcommand() test failurev9.0.0474Bram Moolenaar
Problem: fullcommand() test failure. Solution: Update function table.
2022-09-15patch 9.0.0473: fullcommand() only works for the current script versionv9.0.0473Bram Moolenaar
Problem: fullcommand() only works for the current script version. Solution: Add an optional argument for the script version.
2022-09-15patch 9.0.0472: virtual text "below" doesn't show in list modev9.0.0472Bram Moolenaar
Problem: Virtual text "below" doesn't show in list mode. Solution: Reset lcs_eol_one when displaying text property.
2022-09-15patch 9.0.0471: no test for what patch 9.0.0469 fixesv9.0.0471mityu
Problem: No test for what patch 9.0.0469 fixes. Solution: Add a test. (closes #11140)
2022-09-15patch 9.0.0470: in :def function all closures in loop get the same variablesv9.0.0470Bram Moolenaar
Problem: In a :def function all closures in a loop get the same variables. Solution: When in a loop and a closure refers to a variable declared in the loop, prepare for making a copy of variables for each closure.
2022-09-15patch 9.0.0469: cursor moves if cmdwin is closed when 'splitscroll' is offv9.0.0469Luuk van Baal
Problem: Cursor moves if cmdwin is closed when 'splitscroll' is off. Solution: Skip win_fix_cursor if called when cmdwin is open or closing. (Luuk van Baal, closes #11134)
2022-09-15patch 9.0.0468: exectution stack underflow without the +eval featurev9.0.0468Bram Moolenaar
Problem: Exectution stack underflow without the +eval feature. (Dominique Pellé) Solution: Add to execution stack without FEAT_EVAL. (closes #11135)
2022-09-14patch 9.0.0467: build failurev9.0.0467Bram Moolenaar
Problem: Build failure. Solution: Add missing change.
2022-09-14patch 9.0.0466: virtual text wrong after adding line break after linev9.0.0466Bram Moolenaar
Problem: Virtual text wrong after adding line break after line. Solution: Pass an "eol" flag to where text properties are adjusted. (closes #11131)
2022-09-14patch 9.0.0465: cursor moves when cmdwin is closed when 'splitscroll' is offv9.0.0465mityu
Problem: Cursor moves when cmdwin is closed when 'splitscroll' is off. Solution: Temporarily set 'splitscroll' when jumping back to the original window. (closes #11128)
2022-09-14patch 9.0.0464: with virtual text "above" indenting doesn't work wellv9.0.0464Bram Moolenaar
Problem: With virtual text "above" indenting doesn't work well. Solution: Ignore text properties while adjusting indent. (issue #11084)
2022-09-14patch 9.0.0463: command line test leaves directory behindv9.0.0463Dominique Pelle
Problem: Command line test leaves directory behind. Solution: Use the "R" flag on the first mkdir(). (Dominique Pellé, closes #11127)
2022-09-14patch 9.0.0462: ASAN warning for integer overflowv9.0.0462Bram Moolenaar
Problem: ASAN warning for integer overflow. Solution: Check for tp_col to be MAXCOL.
2022-09-14patch 9.0.0461: 'scroll' is not always updatedv9.0.0461Luuk van Baal
Problem: 'scroll' is not always updated. Solution: Call win_init_size() at the right place.
2022-09-14patch 9.0.0460: loop variable can't be foundv9.0.0460Bram Moolenaar
Problem: Loop variable can't be found. Solution: Adjust block_id of the loop variable each round.
2022-09-13patch 9.0.0459: Vim9: block in for loop doesn't behave like a code blockv9.0.0459Bram Moolenaar
Problem: Vim9: block in for loop doesn't behave like a code block. Solution: Use a new block ID for each loop at the script level.
2022-09-13patch 9.0.0458: splitting a line with a text prop "above" moves it downv9.0.0458Bram Moolenaar
Problem: Splitting a line with a text prop "above" moves it to a new line below. Solution: Keep an "above" text prop above the first line.
2022-09-13patch 9.0.0457: substitute prompt does not highlight an empty matchv9.0.0457Bram Moolenaar
Problem: Substitute prompt does not highlight an empty match. Solution: Highlight at least one character.
2022-09-13patch 9.0.0456: function called at debug prompt is also debuggedv9.0.0456Bram Moolenaar
Problem: Function called at debug prompt is also debugged. Solution: Reset the debug level while entering the debug command. (closes #11118)
2022-09-13patch 9.0.0455: a few problems with 'splitscroll'v9.0.0455Luuk van Baal
Problem: A few problems with 'splitscroll'. Solution: Fix 'splitscroll' problems. (Luuk van Baal, closes #11117)
2022-09-13patch 9.0.0454: incorrect color for modeless selection with GTKv9.0.0454Your Name
Problem: Incorrect color for modeless selection with GTK. Solution: Use simple inversion instead of XOR. (closes #11111)
2022-09-12patch 9.0.0453: on an AZERTY keyboard digit keys get the shift modifierv9.0.0453Bram Moolenaar
Problem: On an AZERTY keyboard digit keys get the shift modifier. Solution: Remove the shift modifier from digit keys. (closes #11109)
2022-09-12patch 9.0.0452: Visual highlighting extends into virtual text propv9.0.0452Bram Moolenaar
Problem: Visual highlighting extends into virtual text prop. Solution: Do not highlight what isn't actually selected. Fix ordering of stored text props.
2022-09-12patch 9.0.0451: virtual text "above" does not work with 'nowrap'v9.0.0451Bram Moolenaar
Problem: Virtual text "above" does not work with 'nowrap'. Solution: Do wrap the line after. (closes #11084)
2022-09-12patch 9.0.0450: return value of argument check functions is inconsistentv9.0.0450zeertzjq
Problem: Return value of argument check functions is inconsistent. Solution: Return OK/FAIL instead of TRUE/FALSE. (closes #11112)
2022-09-12patch 9.0.0449: there is no easy way to translate a key code into a stringv9.0.0449zeertzjq
Problem: There is no easy way to translate a string with a key code into a readable string. Solution: Add the keytrans() function. (closes #11114)
2022-09-12patch 9.0.0448: SubRip files are not recognizedv9.0.0448ObserverOfTime
Problem: SubRip files are not recognized. Solution: Add a pattern for SubRip. (closes #11113)
2022-09-11patch 9.0.0447: using :echowin while at the hit-enter prompt causes problemsv9.0.0447Bram Moolenaar
Problem: Using :echowin while at the hit-enter prompt causes problems. Solution: Do not prompt for :echowin. Postpone showing the message window. Start the timer when the window is displayed.
2022-09-11patch 9.0.0446: message window may be positioned too lowv9.0.0446Bram Moolenaar
Problem: Message window may be positioned too low. Solution: Compute cmdline_row before computing the position.
2022-09-11patch 9.0.0445: when opening/closing window text moves up/downv9.0.0445Luuk van Baal
Problem: When opening/closing window text moves up/down. Solution: Add the 'splitscroll' option. When off text will keep its position as much as possible.
2022-09-11patch 9.0.0444: trying to declare g:variable gives confusing errorv9.0.0444Bram Moolenaar
Problem: Trying to declare g:variable gives confusing error. Solution: Give a better error message. (closes #11108)
2022-09-11patch 9.0.0443: blueprint files are not recognizedv9.0.0443Gabriele Musco
Problem: Blueprint files are not recognized. Solution: Add a pattern for blueprint files. (Gabriele Musco, closes #11107)
2022-09-11patch 9.0.0442: virtual text "above" doesn't handel line numbersv9.0.0442Bram Moolenaar
Problem: Virtual text "above" doesn't handel line numbers. Solution: Take the left column offset into account. (issue #11084) Also make padding work.
2022-09-11patch 9.0.0441: closure in for loop test fails on some systemsv9.0.0441Bram Moolenaar
Problem: Closure in for loop test fails on some systems. Solution: Do not wait for the ruler to show up. (issue #11106)
2022-09-11patch 9.0.0440: crash when using mkdir() with "R" flag in compiled functionv9.0.0440Bram Moolenaar
Problem: Crash when using mkdir() with "R" flag in compiled function. Solution: Reserve a variable for deferred function calls. Handle more than one argument.
2022-09-10patch 9.0.0439: cursor wrong if inserting before line with virtual text abovev9.0.0439Bram Moolenaar
Problem: Cursor wrong if inserting before line with virtual text above. Solution: Add the width of the "above" virtual text to the cursor position. (issue #11084)
2022-09-10patch 9.0.0438: cannot put virtual text above a linev9.0.0438Bram Moolenaar
Problem: Cannot put virtual text above a line. Solution: Add the "above" value for "text_align".
2022-09-10patch 9.0.0437: no error when custom completion function returns wrong typev9.0.0437Bram Moolenaar
Problem: No error when a custom completion function returns something else than the expected list. Solution: Give an error. (closes #11100)
2022-09-10patch 9.0.0436: CI: running tests in parallel causes flakinessv9.0.0436K.Takata
Problem: CI: running tests in parallel causes flakiness. Solution: Reorganize the MS-Windows runs. (Ken Takata, closes #11101)
2022-09-10patch 9.0.0435: compiler warning for uninitialized variablev9.0.0435Bram Moolenaar
Problem: Compiler warning for uninitialized variable. Solution: Initialize it.
2022-09-10patch 9.0.0434: gitignore files are not recognizedv9.0.0434ObserverOfTime
Problem: gitignore files are not recognized. Solution: Add patterns for the gitignore filetype. (closes #11102)
2022-09-10patch 9.0.0433: Coverity warns for not checking allocation failurev9.0.0433Bram Moolenaar
Problem: Coverity warns for not checking allocation failure. Solution: Check that allocating a list or blob succeeded.
2022-09-09patch 9.0.0432: crash when using for loop variable in closurev9.0.0432Bram Moolenaar
Problem: Crash when using for loop variable in closure. Solution: Check that the variable wasn't deleted. (issue #11094)
2022-09-09patch 9.0.0431: current mode shows in message windowv9.0.0431Bram Moolenaar
Problem: Current mode shows in message window. Solution: Reset in_echowindow before redrawing. (issue #11094)
2022-09-09patch 9.0.0430: cannot use repeat() with a blobv9.0.0430Bakudankun
Problem: Cannot use repeat() with a blob. Solution: Implement blob repeat. (closes #11090)
2022-09-09patch 9.0.0429: not all keys are tested for the MS-Windows GUIv9.0.0429Yegappan Lakshmanan
Problem: Not all keys are tested for the MS-Windows GUI. Solution: Add more key codes to the list. (Yegappan Lakshmanan, closes #11097)
2022-09-09patch 9.0.0428: autocmd test uses common file namev9.0.0428Bram Moolenaar
Problem: Autocmd test uses common file name. Solution: Use unique name to reduce flakiness.
2022-09-09patch 9.0.0427: Drupal theme files are not recognizedv9.0.0427Rodrigo Aguilera
Problem: Drupal theme files are not recognized. Solution: Use php filetype for Drupl theme files. Remove trailing spaces. (Rodrigo Aguilera, closes #11096)