Populate location lists for all windows containing the buffer with number |buffer_number|. See SetLocationListForWindow for format of diagnostics.
( buffer_number,
diagnostics,
open_on_edit = False )
| 420 | |
| 421 | |
| 422 | def SetLocationListsForBuffer( buffer_number, |
| 423 | diagnostics, |
| 424 | open_on_edit = False ): |
| 425 | """Populate location lists for all windows containing the buffer with number |
| 426 | |buffer_number|. See SetLocationListForWindow for format of diagnostics.""" |
| 427 | for window in GetWindowsForBufferNumber( buffer_number ): |
| 428 | SetLocationListForWindow( window, diagnostics, open_on_edit ) |
| 429 | |
| 430 | |
| 431 | def SetLocationListForWindow( window, |
nothing calls this directly
no test coverage detected