Engineering

Two shortcuts are all you need:
Cmd+Shift+C (Mac) or Ctrl+Shift+C (Windows/Linux) — Copy code referenceCmd+Shift+V (Mac) or Ctrl+Shift+V (Windows/Linux) — Navigate to referenceSelect any code, press the copy shortcut, and you get @filename.js (10-20) in your clipboard. Share it anywhere. When someone pastes it and presses the navigate shortcut, they jump directly to those lines with highlighting.
Works in VS Code and Cursor. No setup required.
When reviewing code or discussing bugs with teammates, you constantly share code locations. You type "Check line 145 in api.js" in Slack, but your teammate has to:
It's slow and breaks flow.
What if you could copy a code location as @api.js (145) and anyone could paste it to jump directly there?
That's what CodeJump does. Copy code with a shortcut, share the reference anywhere, and navigate instantly.
The extension has three main parts:
Select code → Press Cmd+Shift+C → Get @filename (lines)
The extension:
@src/utils/helper.js (10-20)Every 500ms, the extension checks if your clipboard has a valid reference like @file.js (42).
If yes:
🔗 @file.js (42)If no:
This keeps the UI clean — features only appear when useful.
Press Cmd+Shift+V or click the menu → Extension:
/@([^\s(]+)\s*\((\d+)(?:-(\d+))?\)/Links: