Jump to Vim tab with corresponding number
( tab_number )
| 1221 | |
| 1222 | |
| 1223 | def JumpToTab( tab_number ): |
| 1224 | """Jump to Vim tab with corresponding number """ |
| 1225 | vim.command( f'silent! tabn { tab_number }' ) |
| 1226 | |
| 1227 | |
| 1228 | def OpenFileInPreviewWindow( filename, modifiers ): |