summaryrefslogtreecommitdiff
path: root/src/testdir/test_bufwintabinfo.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.1432: various inconsistencies in test filesv8.2.1432Bram Moolenaar2020-08-121-0/+3
| | | | | | | 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)
* patch 8.2.1241: cannot use getbufinfo() as a methodv8.2.1241Bram Moolenaar2020-07-181-0/+3
| | | | | Problem: Cannot use getbufinfo() as a method. Solution: Support using getbufinfo() as a method. (closes #6458)
* patch 8.2.0634: crash with null partial and blobv8.2.0634Bram Moolenaar2020-04-251-0/+1
| | | | | | Problem: Crash with null partial and blob. Solution: Check for NULL pointer. Add more tests. (Yegappan Lakshmanan, closes #5984)
* patch 8.2.0019: cannot number of lines of another bufferv8.2.0019Bram Moolenaar2019-12-171-0/+10
| | | | | | Problem: Cannot number of lines of another buffer. Solution: Add "linecount" to getbufinfo(). (Yasuhiro Matsumoto, closes #5370)
* patch 8.1.2373: cannot build with +popupwin but without +quickfixv8.1.2373Bram Moolenaar2019-12-011-103/+106
| | | | | Problem: Cannot build with +popupwin but without +quickfix. (John Marriott) Solution: Adjust #ifdefs.
* patch 8.1.2225: the "last used" info of a buffer is under usedv8.1.2225Bram Moolenaar2019-10-271-0/+12
| | | | | | 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)
* patch 8.1.1996: more functions can be used as methodsv8.1.1996Bram Moolenaar2019-09-061-1/+1
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1952: more functions can be used as a methodv8.1.1952Bram Moolenaar2019-08-311-1/+1
| | | | | Problem: More functions can be used as a method. Solution: Allow more functions to be used as a method.
* patch 8.1.1925: more functions can be used as methodsv8.1.1925Bram Moolenaar2019-08-241-2/+2
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1909: more functions can be used as methodsv8.1.1909Bram Moolenaar2019-08-211-1/+1
| | | | | Problem: More functions can be used as methods. Solution: Make a few more functions usable as a method.
* patch 8.1.0187: getwininfo() and win_screenpos() return different numbersv8.1.0187Bram Moolenaar2018-07-151-9/+10
| | | | | Problem: getwininfo() and win_screenpos() return different numbers. Solution: Add one to "wincol" and "winrow" from getwininfo().
* patch 8.1.0186: test for getwininfo() fails in GUIv8.1.0186Bram Moolenaar2018-07-141-3/+4
| | | | | Problem: Test for getwininfo() fails in GUI. Solution: Account for missing tabline.
* patch 8.1.0184: not easy to figure out the window layoutv8.1.0184Bram Moolenaar2018-07-141-2/+19
| | | | | Problem: Not easy to figure out the window layout. Solution: Add "wincol" and "winrow" to what getwininfo() returns.
* patch 8.0.1386: cannot select modified buffers with getbufinfo()v8.0.1386Bram Moolenaar2017-12-101-0/+7
| | | | | Problem: Cannot select modified buffers with getbufinfo(). Solution: Add the "bufmodified" flag. (Yegappan Lakshmanan, closes #2431)
* patch 8.0.1224: still interference between test functionsv8.0.1224Bram Moolenaar2017-10-271-1/+0
| | | | | | Problem: Still interference between test functions. Solution: Clear autocommands. Wipe all buffers. Fix tests that depend on a specific start context.
* patch 8.0.0003v8.0.0003Bram Moolenaar2016-09-121-0/+13
| | | | | | 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)
* patch 7.4.2273v7.4.2273Bram Moolenaar2016-08-271-4/+22
| | | | | | 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().
* patch 7.4.2226v7.4.2226Bram Moolenaar2016-08-181-6/+6
| | | | | | Problem: The field names used by getbufinfo(), gettabinfo() and getwininfo() are not consistent. Solution: Use bufnr, winnr and tabnr. (Yegappan Lakshmanan)
* patch 7.4.2216v7.4.2216Bram Moolenaar2016-08-151-1/+3
| | | | | Problem: Test fails without the +sign feature. Solution: Only check for signcolumn with the +sign feature.
* patch 7.4.2215v7.4.2215Bram Moolenaar2016-08-151-0/+45
| | | | | | | 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)
* patch 7.4.2204v7.4.2204Bram Moolenaar2016-08-121-0/+38
Problem: It is not easy to get information about buffers, windows and tabpages. Solution: Add getbufinfo(), getwininfo() and gettabinfo(). (Yegappan Lakshmanan)