Return the list of windows containing the buffer with number |buffer_number| for the current tab page.
( buffer_number )
| 413 | |
| 414 | |
| 415 | def GetWindowsForBufferNumber( buffer_number ): |
| 416 | """Return the list of windows containing the buffer with number |
| 417 | |buffer_number| for the current tab page.""" |
| 418 | return [ window for window in vim.windows |
| 419 | if window.buffer.number == buffer_number ] |
| 420 | |
| 421 | |
| 422 | def SetLocationListsForBuffer( buffer_number, |
no outgoing calls
no test coverage detected