MCPcopy Index your code
hub / github.com/ycm-core/YouCompleteMe / TryJumpLocationInTabs

Function TryJumpLocationInTabs

python/ycm/vimsupport.py:641–646  ·  view source on GitHub ↗
( filename, line, column )

Source from the content-addressed store, hash-verified

639
640# Both |line| and |column| need to be 1-based
641def 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

Callers 1

JumpToLocationFunction · 0.85

Calls 1

TryJumpLocationInTabFunction · 0.85

Tested by

no test coverage detected