summaryrefslogtreecommitdiffstats
path: root/src/version.c
AgeCommit message (Collapse)Author
2023-02-27patch 9.0.1361: extendnew() not sufficiently testedv9.0.1361zeertzjq
Problem: extendnew() not sufficiently tested. Solution: Add a few more test cases for extendnew(). (closes #12075)
2023-02-27patch 9.0.1360: Cue files are not recognizedv9.0.1360Amaan Qureshi
Problem: Cue files are not recognized. Solution: Add patterns for Cue files. (Amaan Qureshi, closes #12067)
2023-02-27patch 9.0.1359: too many "else if" statements in handling optionsv9.0.1359Yegappan Lakshmanan
Problem: Too many "else if" statements in handling options. Solution: Add more functions for handling option changes. (Yegappan Lakshmanan, closes #12060)
2023-02-27patch 9.0.1358: compilation error with some compilersv9.0.1358Bram Moolenaar
Problem: Compilation error with some compilers. Solution: Avoid using "class" as member name.
2023-02-26patch 9.0.1357: using null_object results in an internal errorv9.0.1357Bram Moolenaar
Problem: Using null_object results in an internal error. (Ernie Rael) Solution: Add instructions for pushing an object and class. (closes #12044)
2023-02-26patch 9.0.1356: cannot cancel "gr" with Escv9.0.1356zeertzjq
Problem: Cannot cancel "gr" with Esc. Solution: Make "gr<Esc>" do nothing. (closes #12064)
2023-02-25patch 9.0.1355: no error when declaring a class twicev9.0.1355Bram Moolenaar
Problem: No error when declaring a class twice. (Ernie Rael) Solution: Pass different flags when declaring the class. (closes #12057)
2023-02-25patch 9.0.1354: "gr CTRL-G" stays in virtual replace modev9.0.1354Bram Moolenaar
Problem: "gr CTRL-G" stays in virtual replace mode. (Pierre Ganty) Solution: Prepend CTRL-V before control characters. (closes #12045)
2023-02-25patch 9.0.1353: too many "else if" statements to handle option valuesv9.0.1353Yegappan Lakshmanan
Problem: Too many "else if" statements to handle option values. Solution: Add more functions to handle option value changes. (Yegappan Lakshmanan, closes #12058)
2023-02-24patch 9.0.1352: "ignore" files are outdatedv9.0.1352K.Takata
Problem: "ignore" files are outdated. Solution: Update "ignore" files. (Ken Takata, closes #12056)
2023-02-24patch 9.0.1351: Dhall files are not recognizedv9.0.1351Amaan Qureshi
Problem: Dhall files are not recognized. Solution: Add patterns for Dhall files. (Amaan Qureshi, closes #12052)
2023-02-24patch 9.0.1350: CPON files are not recognizedv9.0.1350Amaan Qureshi
Problem: CPON files are not recognized. Solution: Add patterns for CPON files. (Amaan Qureshi, closes #12053)
2023-02-23patch 9.0.1349: "gr" with a count failsv9.0.1349Bram Moolenaar
Problem: "gr" with a count fails. Solution: Break out of the loop only after using the count.
2023-02-23patch 9.0.1348: Un-grammar files are not recognizedv9.0.1348Amaan Qureshi
Problem: Un-grammar files are not recognized. Solution: Add patterns for Un-grammar files. (Amaan Qureshi, closes #12034)
2023-02-23patch 9.0.1347: "gr CTRL-O" stays in Insert modev9.0.1347Bram Moolenaar
Problem: "gr CTRL-O" stays in Insert mode. (Pierre Ganty) Solution: Do not set restart_edit when "cmdchar" is 'v'. (closes #12045)
2023-02-23patch 9.0.1346: Starlark files are not recognizedv9.0.1346Amaan Qureshi
Problem: Starlark files are not recognized. Solution: Add patterns for Starlark files. (Amaan Qureshi, closes #12049)
2023-02-23patch 9.0.1345: too many "else if" statements for handling optionsv9.0.1345Yegappan Lakshmanan
Problem: Too many "else if" statements for handling options. Solution: Add more functions to handle options. (Yegappan Lakshmanan, closes #12051)
2023-02-23patch 9.0.1344: check for OSC escape sequence doesn't workv9.0.1344Bram Moolenaar
Problem: Check for OSC escape sequence doesn't work. Solution: Fix typo in index.
2023-02-23patch 9.0.1343: check for OSC escape sequence doesn't workv9.0.1343Johan Mattsson
Problem: Check for OSC escape sequence doesn't work. Solution: Move square bracket to the right place. (Johan Mattsson, closes #12048)
2023-02-23patch 9.0.1342: MS-Windows: linking may fail with space in directory namev9.0.1342zhihaoy
Problem: MS-Windows: linking may fail with space in directory name. Solution: Add quotes. (closes #12050)
2023-02-22patch 9.0.1341: build error with mzscheme but without GUIv9.0.1341K.Takata
Problem: Build error with mzscheme but without GUI. Solution: Adjust #ifdefs. (Ken Takata, closes #12042) Also fix function argument.
2023-02-22patch 9.0.1340: Coverity warns for using NULL pointerv9.0.1340Bram Moolenaar
Problem: Coverity warns for using NULL pointer. Solution: Check that lhs_type is not NULL.
2023-02-21patch 9.0.1339: no test for :disassemble with class functionv9.0.1339Bram Moolenaar
Problem: No test for :disassemble with class function. Solution: Add a test.
2023-02-21patch 9.0.1338: :defcompile and :disassemble can't find class methodv9.0.1338Bram Moolenaar
Problem: :defcompile and :disassemble can't find class method. (Ernie Rael) Solution: Make a class name and class.method name work. (closes #11984)
2023-02-21patch 9.0.1337: yuck files are not recognizedv9.0.1337Amaan Qureshi
Problem: Yuck files are not recognized. Solution: Add a filetype pattern for yuck files. (Amaan Qureshi, closes #12033)
2023-02-21patch 9.0.1336: functions without arguments are not always declared properlyv9.0.1336Yegappan Lakshmanan
Problem: Functions without arguments are not always declared properly. Solution: Use "(void)" instead of "()". (Yegappan Lakshmanan, closes #12031)
2023-02-21patch 9.0.1335: no test for bad use of spaces in help filesv9.0.1335h-east
Problem: No test for bad use of spaces in help files. Solution: Add checks for use of spaces in help files. Ignore intentional spaces. (Hirohito Higashi, closes #11952)
2023-02-21patch 9.0.1334: using tt_member for the class leads to mistakesv9.0.1334Bram Moolenaar
Problem: Using tt_member for the class leads to mistakes. Solution: Add a separate tt_class field.
2023-02-20patch 9.0.1333: when redo'ing twice <ScriptCmd> may not get the script IDv9.0.1333Bram Moolenaar
Problem: When redo'ing twice <ScriptCmd> may not get the script ID. Solution: When "last_used_map" map is not set use "last_used_sid". (closes #11930)
2023-02-20patch 9.0.1332: crash when using buffer-local user command in cmdline windowv9.0.1332zeertzjq
Problem: Crash when using buffer-local user command in cmdline window. (Karl Yngve LervÄg) Solution: Use the right buffer to find the user command. (closes #12030, closes #12029)
2023-02-20patch 9.0.1331: illegal memory access when using :ball in Visual modev9.0.1331Pavel Mayorov
Problem: Illegal memory access when using :ball in Visual mode. Solution: Stop Visual mode when using :ball. (Pavel Mayorov, closes #11923)
2023-02-20patch 9.0.1330: handling new value of an option has a long "else if" chainv9.0.1330Yegappan Lakshmanan
Problem: Handling new value of an option has a long "else if" chain. Solution: Use a function pointer. (Yegappan Lakshmanan, closes #12015)
2023-02-19patch 9.0.1329: completion of map includes simplified onesv9.0.1329zeertzjq
Problem: Completion of map includes simplified ones. Solution: Do not complete simplified mappings. (closes #12013)
2023-02-19patch 9.0.1328: error when using "none" for GUI color is confusingv9.0.1328Bram Moolenaar
Problem: Error when using "none" for GUI color is confusing. Solution: Mention that the name should perhaps be "NONE". (closes #1400)
2023-02-19patch 9.0.1327: cursor in wrong position below line with virtual text belowv9.0.1327Bram Moolenaar
Problem: Cursor in wrong position below line with virtual text below ending in multi-byte character. Solution: When checking for last character take care of multi-byte character.
2023-02-19patch 9.0.1326: relative line number not updated with virtual text abovev9.0.1326Bram Moolenaar
Problem: Relative line number not updated with virtual text above. Solution: Adjust the row for the line number for virtual text above. (closes #12004)
2023-02-19patch 9.0.1325: 'colorcolumn' highlight wrong with virtual text abovev9.0.1325Bram Moolenaar
Problem: 'colorcolumn' highlight wrong with virtual text above. Solution: Adjust column of 'colorcolumn' for text propertly. (closes #12004)
2023-02-18patch 9.0.1324: "gj" and "gk" do not move correctly over a closed foldv9.0.1324Luuk van Baal
Problem: "gj" and "gk" do not move correctly over a closed fold. Solution: Use the same code as used for "j"/"k" to go to the next/previous line. (Luuk van Baal, closes #12007)
2023-02-18patch 9.0.1323: build failure with +eval featurev9.0.1323Bram Moolenaar
Problem: Build failure with +eval feature. Solution: Add missing part for using funcerror_T.
2023-02-18patch 9.0.1322: crash when indexing "any" which is an objectv9.0.1322Bram Moolenaar
Problem: Crash when indexing "any" which is an object. Solution: Check the index is a number. Do not check the member type of an object. (closes #12019)
2023-02-18patch 9.0.1321: vimscript test fails where using {expr} syntaxv9.0.1321Bram Moolenaar
Problem: vimscript test fails where using {expr} syntax. Solution: Only return FCERR_FAILED in call_user_func() for Vim9 script.
2023-02-18patch 9.0.1320: checking the type of a null object causes a crashv9.0.1320Bram Moolenaar
Problem: Checking the type of a null object causes a crash. Solution: Don't try to get the class of a null object. (closes #12005) Handle error from calling a user function better.
2023-02-18patch 9.0.1319: PRQL files are not recognizedv9.0.1319Matthias Queitsch
Problem: PRQL files are not recognized. Solution: Add a filetype pattern for PRQL files. (Matthias Queitsch, closes #12018)
2023-02-17patch 9.0.1318: code style test failsv9.0.1318Bram Moolenaar
Problem: Code style test fails. Solution: Remove trailing white space.
2023-02-17patch 9.0.1317: crash when using an unset object variablev9.0.1317Bram Moolenaar
Problem: Crash when using an unset object variable. Solution: Give an error instead. (closes #12005)
2023-02-17patch 9.0.1316: MS-Windows: vimfiles dir created with admin groupv9.0.1316Christopher Plewright
Problem: MS-Windows: vimfiles dir created with admin group. Solution: Use ShellExecAsUser to create the vimfiles directory. (Christopher Plewright, Ken Takata, closes #12000, closes #11888)
2023-02-17patch 9.0.1315: escaping for completion of map command not properly testedv9.0.1315zeertzjq
Problem: Escaping for completion of map command not properly tested. Solution: Add a few test cases. (closes #12009)
2023-02-16patch 9.0.1314: :messages behavior depends on 'fileformat' of current bufferv9.0.1314cero1988
Problem: :messages behavior depends on 'fileformat' of current buffer. Solution: Pass the buffer pointer to where it is used. (Mirko Ceroni, closes #11995)
2023-02-15patch 9.0.1313: some settings use the current codepage instead of 'encoding'v9.0.1313K.Takata
Problem: Some settings use the current codepage instead of 'encoding'. Solution: Adjust how options are initialized. (Ken Takata, closes #11992)
2023-02-15patch 9.0.1312: Cursor position wrong when splitting window in insert modev9.0.1312Luuk van Baal
Problem: Cursor position wrong when splitting window in insert mode. Solution: Pass the actual mode to win_fix_cursor(). (Luuk van Baal, closes #11999,