Last active
January 29, 2025 13:04
-
-
Save osolmaz/907d4b9c502166895a9ee07c664c6978 to your computer and use it in GitHub Desktop.
Set Cmd+Shift+C to copy GitHub Permalink in VS Code and Cursor (Arc-like behavior)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Be on Cursor or VS Code | |
// Cmd+Shift+P -> Preferences: Open Keyboard Shortcuts (JSON) | |
// Append the following shortcut to your shortcuts | |
// Whenever on a git repo hosted on GitHub, run Cmd+Shift+C to copy a permalink to the current file/lines | |
[ | |
{ | |
"key": "cmd+shift+c", | |
"command": "issue.copyGithubPermalink", | |
"when": "editorTextFocus" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment