Jump the vim cursor to the preview window, which must be active. Returns boolean indicating if the cursor ended up in the preview window
()
| 1209 | |
| 1210 | |
| 1211 | def JumpToPreviewWindow(): |
| 1212 | """ Jump the vim cursor to the preview window, which must be active. Returns |
| 1213 | boolean indicating if the cursor ended up in the preview window """ |
| 1214 | vim.command( 'silent! wincmd P' ) |
| 1215 | return vim.current.window.options[ 'previewwindow' ] |
| 1216 | |
| 1217 | |
| 1218 | def JumpToPreviousWindow(): |
no outgoing calls
no test coverage detected