Open the supplied filename in the preview window
( filename, modifiers )
| 1226 | |
| 1227 | |
| 1228 | def OpenFileInPreviewWindow( filename, modifiers ): |
| 1229 | """ Open the supplied filename in the preview window """ |
| 1230 | if modifiers: |
| 1231 | modifiers = ' ' + modifiers |
| 1232 | vim.command( f'silent!{ modifiers } pedit! { filename }' ) |
| 1233 | |
| 1234 | |
| 1235 | def WriteToPreviewWindow( message, modifiers ): |
no outgoing calls
no test coverage detected