summaryrefslogtreecommitdiff
path: root/src/testdir/test_bufwintabinfo.vim
Commit message (Collapse)AuthorAgeFilesLines
* 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)