summaryrefslogtreecommitdiffstats
path: root/src/testdir
AgeCommit message (Collapse)Author
2023-01-25patch 9.0.1242: code for :runtime completion is not consistentv9.0.1242zeertzjq
Problem: Code for :runtime completion is not consistent. Solution: Make code for cmdline expansion more consistent. (closes #11875)
2023-01-24patch 9.0.1240: cannot access a private object member in a lambdav9.0.1240Bram Moolenaar
Problem: Cannot access a private object member in a lambda defined inside the class. Solution: Go up the context stack to find the class. (closes #11866)
2023-01-24patch 9.0.1239: cannot have a line break before an object member accessv9.0.1239Bram Moolenaar
Problem: Cannot have a line break before an object member access. Solution: Check for "." in next line. (closes #11864)
2023-01-24patch 9.0.1238: :runtime completion can be further improvedv9.0.1238zeertzjq
Problem: :runtime completion can be further improved. Solution: Also complete the {where} argument values and adjust the completion for that. (closes #11874)
2023-01-22patch 9.0.1234: the code style has to be checked manuallyv9.0.1234Bram Moolenaar
Problem: The code style has to be checked manually. Solution: Add basic code style checks in a test. Fix or avoid uncovered problems.
2023-01-22patch 9.0.1233: search() loops forever if "skip" is TRUE for all matchesv9.0.1233Bram Moolenaar
Problem: search() loops forever if "skip" is TRUE for all matches. Solution: Keep the position of the first match.
2023-01-22patch 9.0.1231: completion of :runtime does not handle {where} argumentv9.0.1231zeertzjq
Problem: Completion of :runtime does not handle {where} argument. Solution: Parse the {where} argument. (closes #11863)
2023-01-22patch 9.0.1230: Apache thrift files are not recognizedv9.0.1230Amaan Qureshi
Problem: Apache thrift files are not recognized. Solution: Add a pattern for thrift files. (Amaan Qureshi, closes #11859)
2023-01-22patch 9.0.1229: Cap'n Proto files are not recognizedv9.0.1229Amaan Qureshi
Problem: Cap'n Proto files are not recognized. Solution: Add a pattern and the "capnp" filetype. (Amaan Qureshi, closes #11862)
2023-01-22patch 9.0.1228: fuzzy menu completion is only tested in the GUIv9.0.1228zeertzjq
Problem: Fuzzy menu completion is only tested in the GUI. Solution: Make fuzzy menu completion test work without GUI. (closes #11861)
2023-01-21patch 9.0.1227: no cmdline completion for :runtimev9.0.1227root
Problem: No cmdline completion for :runtime. Solution: Add completion for :runtime. (closes #11853, closes #11447) Improve the resulting matches.
2023-01-21patch 9.0.1226: spurious empty line when using text propertiesv9.0.1226Bram Moolenaar
Problem: Spurious empty line when using text propertie and virtual text. Solution: Do not set "text_prop_follows" when the other text property is not virtual text. (closes #11846)
2023-01-20patch 9.0.1224: cannot call a :def function with a number for float argumentv9.0.1224Bram Moolenaar
Problem: Cannot call a :def function with a number for a float argument. Solution: Accept a number as well, convert it to a float.
2023-01-20patch 9.0.1223: cannot use setcellwidths() below 0x100v9.0.1223K.Takata
Problem: Cannot use setcellwidths() below 0x100. Solution: Also accept characters between 0x80 and 0x100. (Ken Takata, closes #11834)
2023-01-19patch 9.0.1222: terminal tests are flaky on MacOSv9.0.1222Yegappan Lakshmanan
Problem: Terminal tests are flaky on MacOS. Solution: Add TermWait() calls. (Yegappan Lakshmanan, closes #11852)
2023-01-18patch 9.0.1218: completion includes functions that don't workv9.0.1218Kota Kato
Problem: Completion includes functions that don't work. Solution: Skip functions that are not implemented. (Kota Kato, closes #11845)
2023-01-18patch 9.0.1217: using an object member in a closure doesn't workv9.0.1217Bram Moolenaar
Problem: Using an object member in a closure doesn't work. Solution: Initialize lv_loop_depth. (closes #11840)
2023-01-17patch 9.0.1214: file left behind after running testsv9.0.1214Dominique Pelle
Problem: File left behind after running tests. Solution: Delete the file. (Dominique Pellé, closes #11839)
2023-01-17patch 9.0.1213: adding a line below the last one does not expand foldv9.0.1213Brandon Simmons
Problem: Adding a line below the last one does not expand fold. Solution: Do not skip mark_adjust() when adding lines below the last one. (Brandon Simmons, closes #11832, closes #10698)
2023-01-17patch 9.0.1212: cannot read back what setcellwidths() has donev9.0.1212Kota Kato
Problem: Cannot read back what setcellwidths() has done. Solution: Add getcellwidths(). (Kota Kato, closes #11837)
2023-01-16patch 9.0.1211: storing value in interface member does not always workv9.0.1211Bram Moolenaar
Problem: Storing value in interface member does not always work. Solution: Convert the index on the interface to the index on the object.
2023-01-16patch 9.0.1209: getting interface member does not always workv9.0.1209Bram Moolenaar
Problem: Getting interface member does not always work. Solution: Convert the index on the interface to the index on the object. (closes #11825)
2023-01-16patch 9.0.1207: error when object type is expected but getting "any"v9.0.1207Bram Moolenaar
Problem: Error when object type is expected but getting "any". Solution: When actual type is "any" use a runtime type check. (closes #11826)
2023-01-15patch 9.0.1205: crash when handling class that extends another classv9.0.1205Bram Moolenaar
Problem: Crash when handling class that extends another class with more than one object members. Solution: Correct pointer computations. (closes #11824)
2023-01-15patch 9.0.1204: expression compiled the wrong way after using an objectv9.0.1204Bram Moolenaar
Problem: Expression compiled the wrong way after using an object. Solution: Generate constants before getting the type.
2023-01-15patch 9.0.1203: return type of values() is always list<any>v9.0.1203Bram Moolenaar
Problem: Return type of values() is always list<any>. Solution: Use the member type if possible. (issue #11822)
2023-01-15patch 9.0.1202: crash when iterating over list of objectsv9.0.1202Bram Moolenaar
Problem: Crash when iterating over list of objects. Solution: Do not make a copy of tt_member for object or class. (closes #11823)
2023-01-15patch 9.0.1201: assignment with operator doesn't work in object methodv9.0.1201Bram Moolenaar
Problem: Assignment with operator doesn't work in object method. Solution: Handle loading the object member. (closes #11820) Add a few more tests.
2023-01-14patch 9.0.1198: abstract class not supported yetv9.0.1198Bram Moolenaar
Problem: Abstract class not supported yet. Solution: Implement abstract class and add tests.
2023-01-14patch 9.0.1197: dump file missing from patchv9.0.1197zeertzjq
Problem: Dump file missing from patch. Solution: Add missing dump file.
2023-01-14patch 9.0.1195: restoring KeyTyped when building statusline not testedv9.0.1195zeertzjq
Problem: Restoring KeyTyped when building statusline not tested. Solution: Add a test. Clean up and fix other tests. (closes #11815)
2023-01-13patch 9.0.1192: no error when class function argument shadows a memberv9.0.1192Bram Moolenaar
Problem: No error when class function argument shadows a member. Solution: Check for shadowing.
2023-01-13patch 9.0.1191: some Bazel files are not recognizedv9.0.1191Keith Smiley
Problem: Some Bazel files are not recognized. Solution: Add an extra Bazel pattern. (Keith Smily, closes #11807)
2023-01-13patch 9.0.1189: invalid memory access with folding and using "L"v9.0.1189Bram Moolenaar
Problem: Invalid memory access with folding and using "L". Solution: Prevent the cursor from moving to line zero.
2023-01-12patch 9.0.1188: return value of type() for class and object unclearv9.0.1188Bram Moolenaar
Problem: Return value of type() for class and object unclear. Solution: Add v:t_object and v:t_class.
2023-01-12patch 9.0.1186: imported class does not work when used twice in a linev9.0.1186Bram Moolenaar
Problem: Imported class does not work when used twice in a line. Solution: Fix the type parsing.
2023-01-12patch 9.0.1185: using class from imported script not testedv9.0.1185Bram Moolenaar
Problem: Using class from imported script not tested. Solution: Add tests. Implement what is missing.
2023-01-12patch 9.0.1184: interface of an object is not recognized when checking typev9.0.1184Bram Moolenaar
Problem: Interface of an object is not recognized when checking type. Solution: Use the interface implemented by an object.
2023-01-11patch 9.0.1182: go checksum files are not recognizedv9.0.1182Amaan Q
Problem: go checksum files are not recognized. Solution: Add the name of go checksum files. (Amaan Qureshi, closes #11803)
2023-01-11patch 9.0.1181: class inheritance and typing insufficiently testedv9.0.1181Bram Moolenaar
Problem: Class inheritance and typing insufficiently tested. Solution: Add more tests. Implement missing behavior.
2023-01-11patch 9.0.1179: not all errors around inheritance are testedv9.0.1179Bram Moolenaar
Problem: Not all errors around inheritance are tested. Solution: Add more tests. Fix uncovered problems.
2023-01-11patch 9.0.1178: a child class cannot override functions from a base classv9.0.1178Bram Moolenaar
Problem: A child class cannot override functions from a base class. Solution: Allow overriding and implement "super".
2023-01-11patch 9.0.1176: smithy files are not recognizedv9.0.1176Chris Kipp
Problem: smithy files are not recognized. Solution: Add a pattern for Smithy files. (Chris Kipp, closes #11804)
2023-01-10patch 9.0.1174: smali files are not recognizedv9.0.1174Amaan Q
Problem: Smali files are not recognized. Solution: Add a pattern for Smali files. (Amaan Qureshi, closes #11801)
2023-01-10patch 9.0.1172: when 'selection' is "exclusive" then "1v" is one char shortv9.0.1172Bram Moolenaar
Problem: When 'selection' is "exclusive" then "1v" is one char short. Solution: Add one character when 'selection' is "exclusive. (closes #11791)
2023-01-10patch 9.0.1171: screen is not redrawn after using setcellwidths()v9.0.1171Yasuhiro Matsumoto
Problem: Screen is not redrawn after using setcellwidths(). Solution: Redraw the screen when the cell widths have changed. (Yasuhiro Matsumoto, closes #11800)
2023-01-10patch 9.0.1169: some key+modifier tests fail on some AppVeyor imagesv9.0.1169Christopher Plewright
Problem: Some key+modifier tests fail on some AppVeyor images. Solution: Adjust the tests for key movements and fix the revealed bugs. (Christopher Plewright, closes #11798)
2023-01-09patch 9.0.1167: EditorConfig files do not have their own filetypev9.0.1167Gregory Anders
Problem: EditorConfig files do not have their own filetype. Solution: Add the "editorconfig" filetype. (Gregory Anders, closes #11779)
2023-01-09patch 9.0.1165: tests using IPv6 sometimes failv9.0.1165James McCoy
Problem: Tests using IPv6 sometimes fail. Solution: Use getaddrinfo() and use try/catch. (James McCoy, closes #11783)
2023-01-09patch 9.0.1164: evaluating string expression advances function linev9.0.1164h-east
Problem: Evaluating string expression advances function line. Solution: Disable function lines while parsing a string expression. (Hirohito Higashi, closes #11796)