( filename, line, column )
| 639 | |
| 640 | # Both |line| and |column| need to be 1-based |
| 641 | def TryJumpLocationInTabs( filename, line, column ): |
| 642 | for tab in vim.tabpages: |
| 643 | if TryJumpLocationInTab( tab, filename, line, column ): |
| 644 | return True |
| 645 | # 'filename' is not opened in any tab pages |
| 646 | return False |
| 647 | |
| 648 | |
| 649 | # Maps User command to vim command |
no test coverage detected