( window, line, column )
| 1461 | |
| 1462 | |
| 1463 | def ScreenPositionForLineColumnInWindow( window, line, column ): |
| 1464 | return vim.eval( f'screenpos( { WinIDForWindow( window ) }, ' |
| 1465 | f'{ line }, ' |
| 1466 | f'{ column } )' ) |
| 1467 | |
| 1468 | |
| 1469 | def UsingPreviewPopup(): |
nothing calls this directly
no test coverage detected