summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_bufwintabinfo.vim
AgeCommit message (Collapse)Author
2022-04-20patch 8.2.4797: getwininfo() may get oudated valuesv8.2.4797LemonBoy
Problem: getwininfo() may get oudated values. Solution: Make sure w_botline is up-to-date. (closes #10226)
2021-11-20patch 8.2.3627: difficult to know where the text starts in a windowv8.2.3627Bram Moolenaar
Problem: difficult to know where the text starts in a window. (Sergey Vlasov) Solution: Add the "textoff" entry in the result of getwininfo(). (closes #9163)
2020-08-12patch 8.2.1432: various inconsistencies in test filesv8.2.1432Bram Moolenaar
Problem: Various inconsistencies in test files. Solution: Add modelines where they were missing. Use Check commands instead of silently skipping over tests. Adjust indents and comments. (Ken Takata, closes #6695)
2020-07-18patch 8.2.1241: cannot use getbufinfo() as a methodv8.2.1241Bram Moolenaar
Problem: Cannot use getbufinfo() as a method. Solution: Support using getbufinfo() as a method. (closes #6458)
2020-04-25patch 8.2.0634: crash with null partial and blobv8.2.0634Bram Moolenaar
Problem: Crash with null partial and blob. Solution: Check for NULL pointer. Add more tests. (Yegappan Lakshmanan, closes #5984)
2019-12-17patch 8.2.0019: cannot number of lines of another bufferv8.2.0019Bram Moolenaar
Problem: Cannot number of lines of another buffer. Solution: Add "linecount" to getbufinfo(). (Yasuhiro Matsumoto, closes #5370)
2019-12-01patch 8.1.2373: cannot build with +popupwin but without +quickfixv8.1.2373Bram Moolenaar
Problem: Cannot build with +popupwin but without +quickfix. (John Marriott) Solution: Adjust #ifdefs.
2019-10-27patch 8.1.2225: the "last used" info of a buffer is under usedv8.1.2225Bram Moolenaar
Problem: The "last used" info of a buffer is under used. Solution: Add "lastused" to getbufinfo(). List buffers sorted by last-used field. (Andi Massimino, closes #4722)
2019-09-06patch 8.1.1996: more functions can be used as methodsv8.1.1996Bram Moolenaar
Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
2019-08-31patch 8.1.1952: more functions can be used as a methodv8.1.1952Bram Moolenaar
Problem: More functions can be used as a method. Solution: Allow more functions to be used as a method.
2019-08-24patch 8.1.1925: more functions can be used as methodsv8.1.1925Bram Moolenaar
Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
2019-08-21patch 8.1.1909: more functions can be used as methodsv8.1.1909Bram Moolenaar
Problem: More functions can be used as methods. Solution: Make a few more functions usable as a method.
2018-07-15patch 8.1.0187: getwininfo() and win_screenpos() return different numbersv8.1.0187Bram Moolenaar
Problem: getwininfo() and win_screenpos() return different numbers. Solution: Add one to "wincol" and "winrow" from getwininfo().
2018-07-14patch 8.1.0186: test for getwininfo() fails in GUIv8.1.0186Bram Moolenaar
Problem: Test for getwininfo() fails in GUI. Solution: Account for missing tabline.
2018-07-14patch 8.1.0184: not easy to figure out the window layoutv8.1.0184Bram Moolenaar
Problem: Not easy to figure out the window layout. Solution: Add "wincol" and "winrow" to what getwininfo() returns.
2017-12-10patch 8.0.1386: cannot select modified buffers with getbufinfo()v8.0.1386Bram Moolenaar
Problem: Cannot select modified buffers with getbufinfo(). Solution: Add the "bufmodified" flag. (Yegappan Lakshmanan, closes #2431)
2017-10-27patch 8.0.1224: still interference between test functionsv8.0.1224Bram Moolenaar
Problem: Still interference between test functions. Solution: Clear autocommands. Wipe all buffers. Fix tests that depend on a specific start context.
2016-09-12patch 8.0.0003v8.0.0003Bram Moolenaar
Problem: getwinvar() returns wrong Value of boolean and number options, especially non big endian systems. (James McCoy) Solution: Cast the pointer to long or int. (closes #1060)
2016-08-27patch 7.4.2273v7.4.2273Bram Moolenaar
Problem: getwininfo() and getbufinfo() are inefficient. Solution: Do not make a copy of all window/buffer-local options. Make it possible to get them with gettabwinvar() or getbufvar().
2016-08-18patch 7.4.2226v7.4.2226Bram Moolenaar
Problem: The field names used by getbufinfo(), gettabinfo() and getwininfo() are not consistent. Solution: Use bufnr, winnr and tabnr. (Yegappan Lakshmanan)
2016-08-15patch 7.4.2216v7.4.2216Bram Moolenaar
Problem: Test fails without the +sign feature. Solution: Only check for signcolumn with the +sign feature.
2016-08-15patch 7.4.2215v7.4.2215Bram Moolenaar
Problem: It's not easy to find out if a window is a quickfix or location list window. Solution: Add "loclist" and "quickfix" entries to the dict returnec by getwininfo(). (Yegappan Lakshmanan)
2016-08-12patch 7.4.2204v7.4.2204Bram Moolenaar
Problem: It is not easy to get information about buffers, windows and tabpages. Solution: Add getbufinfo(), getwininfo() and gettabinfo(). (Yegappan Lakshmanan)