summaryrefslogtreecommitdiffstats
path: root/src/testdir
AgeCommit message (Collapse)Author
2023-03-16patch 9.0.1411: accuracy of profiling is not optimalv9.0.1411Ernie Rael
Problem: Accuracy of profiling is not optimal. Solution: Use CLOCK_MONOTONIC if possible. (Ernie Rael, closes #12129)
2023-03-16patch 9.0.1409: racket files are recognized as schemev9.0.1409Gabriel Kakizaki
Problem: Racket files are recognized as scheme. Solution: Recognize rackets files separately. (Gabriel Kakizaki, closes #12164, closes #12162)
2023-03-16patch 9.0.1408: QMLdir files are not recognizedv9.0.1408Amaan Qureshi
Problem: QMLdir files are not recognized. Solution: Add a pattern for QMLdir files. (Amaan Qureshi, closes #12161)
2023-03-16patch 9.0.1407: TableGen files are not recognizedv9.0.1407Amaan Qureshi
Problem: TableGen files are not recognized. Solution: Add a pattern for TableGen files. (Amaan Qureshi, closes #12156)
2023-03-16patch 9.0.1406: ILE RPG files are not recognizedv9.0.1406Andreas Louv
Problem: ILE RPG files are not recognized. Solution: Add patterns for ILE RPG files. (Andreas Louv, issue #12152)
2023-03-11patch 9.0.1402: crash when using null_classv9.0.1402Bram Moolenaar
Problem: Crash when using null_class. Solution: Give an error when trying to use a null class.
2023-03-10patch 9.0.1398: profile test repeats the headers many timesv9.0.1398Bram Moolenaar
Problem: Profile test repeats the headers many times. Solution: Put the headers in script variables.
2023-03-10patch 9.0.1397: highlight for popupmenu kind and extra cannot be setv9.0.1397Gianmaria Bajo
Problem: Highlight for popupmenu kind and extra cannot be set. Solution: Add PmenuKind, PmenuKindSel, PmenuExtra and PmenuExtraSel highlight groups and use them. (Gianmaria Bajo, closes #12114)
2023-03-09patch 9.0.1396: sort(list, 'N') does not work in Vim9 script contextv9.0.1396Bram Moolenaar
Problem: sort(list, 'N') does not work in Vim9 script context. Solution: Convert string to number without giving an error. (closes #12061)
2023-03-08patch 9.0.1395: Odin files are not recognizedv9.0.1395Amaan Qureshi
Problem: Odin files are not recognized. Solution: Add a pattern for Odin files. (Amaan Qureshi, closes #12122)
2023-03-08patch 9.0.1394: Unx Tal files are not recognizedv9.0.1394Amaan Qureshi
Problem: Unx Tal files are not recognized. Solution: Add a pattern for Unx Tal files. (Amaan Qureshi, closes #12117)
2023-03-08patch 9.0.1393: Cairo files are not recognizedv9.0.1393Amaan Qureshi
Problem: Cairo files are not recognized. Solution: Add a pattern for Cairo files. (Amaan Qureshi, closes #12118)
2023-03-07patch 9.0.1392: using NULL pointer with nested :open commandv9.0.1392Bram Moolenaar
Problem: Using NULL pointer with nested :open command. Solution: Check that ccline.cmdbuff is not NULL.
2023-03-06patch 9.0.1387: scrollbar test sporadically failsv9.0.1387Christian Brabandt
Problem: Scrollbar test sporadically fails. Solution: Mark the scrollbar test as flaky. (Christian Brabandt, closes #12113)
2023-03-06patch 9.0.1386: options test fails with some window widthv9.0.1386zeertzjq
Problem: Options test fails with some window width. Solution: Adjust what text the test checks with. (closes #12111)
2023-03-05patch 9.0.1385: g'Esc is considered an errorv9.0.1385zeertzjq
Problem: g'Esc is considered an error. Solution: Make g'Esc silently abandon the command. (closes #12110)
2023-03-05patch 9.0.1383: xxd: combination of little endian and cols failsv9.0.1383Bram Moolenaar
Problem: xxd: combination of little endian and cols fails. (Aapo Rantalainen) Solution: Round up the space taken by the hex output. (closes #12097)
2023-03-05patch 9.0.1382: failing test for strptime() doesn't show returned valuev9.0.1382Bram Moolenaar
Problem: Failing test for strptime() doesn't show returned value. Solution: Use assert_equal() instead of assert_true().
2023-03-04patch 9.0.1380: CTRL-X on 2**64 subtracts twov9.0.1380Bram Moolenaar
Problem: CTRL-X on 2**64 subtracts two. (James McCoy) Solution: Correct computation for large number. (closes #12103)
2023-03-04patch 9.0.1379: functions for handling options are not orderedv9.0.1379Yegappan Lakshmanan
Problem: Functions for handling options are not ordered. Solution: Put functions in alphabetical order. (Yegappan Lakshmanan, closes #12101)
2023-03-04patch 9.0.1378: illegal memory access when using virtual editingv9.0.1378Bram Moolenaar
Problem: Illegal memory access when using virtual editing. Solution: Make sure "startspaces" is not negative.
2023-03-03patch 9.0.1376: accessing invalid memory with put in Visual block modev9.0.1376Bram Moolenaar
Problem: Accessing invalid memory with put in Visual block mode. Solution: Adjust the cursor column if needed.
2023-03-03patch 9.0.1375: crash when getting member of obj of unknown classv9.0.1375Ernie Rael
Problem: Crash when getting member of obj of unknown class. Solution: Check for NULL class and give an error message. (Ernie Rael, closes #12096)
2023-03-02patch 9.0.1373: wrong text displayed when using both 'linebreak' and 'list'v9.0.1373h-east
Problem: Wrong text displayed when using both 'linebreak' and 'list'. Solution: Only set "c_extra" to NUL when "p_extra" is not empty. (Hirohito Higashi, closes #12065)
2023-03-02patch 9.0.1372: test for 'toolbariconsize' may failv9.0.1372James McCoy
Problem: Test for 'toolbariconsize' may fail. Solution: Only test 'toolbariconsize' when it is supported. (James McCoy, closes #12095)
2023-03-02patch 9.0.1371: ballooneval interferes with Insert completionv9.0.1371zeertzjq
Problem: Ballooneval interferes with Insert completion. Solution: Ignore mouse-move events when completing. (closes #12094, closes #12092)
2023-03-02patch 9.0.1370: crash when using a NULL objectv9.0.1370Bram Moolenaar
Problem: Crash when using a NULL object. (Ernie Rael) Solution: Check for NULL and give an error message. (closes #12083)
2023-03-02patch 9.0.1369: still some "else if" constructs for setting optionsv9.0.1369Yegappan Lakshmanan
Problem: Still some "else if" constructs for setting options. Solution: Add a few more functions for handling options. (Yegappan Lakshmanan, closes #12090)
2023-03-02patch 9.0.1368: Bass files are not recognizedv9.0.1368Amaan Qureshi
Problem: Bass files are not recognized. Solution: Add patterns for Bass files. (Amaan Qureshi, closes #12088)
2023-03-01patch 9.0.1367: divide by zero in zero-width windowv9.0.1367Bram Moolenaar
Problem: Divide by zero in zero-width window. Solution: Check the width is positive.
2023-02-28patch 9.0.1365: dead test codev9.0.1365zeertzjq
Problem: Dead test code. Solution: Remove code that depends on Farsi, which has been removed. (closes #12084)
2023-02-27patch 9.0.1363: crash when :def function has :break in skipped blockv9.0.1363Bram Moolenaar
Problem: Crash when :def function has :break in skipped block. (Ernie Rael) Solution: Don't generate a jump for a skipped :break. (closes #12077)
2023-02-27patch 9.0.1362: ml_get error when going to another tabv9.0.1362Bram Moolenaar
Problem: ml_get error when going to another tab. (Daniel J. Perry) Solution: Do not call update_topline() if "curwin" is invalid. (closes #11907)
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-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.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.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-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)