简体   繁体   中英

vscode jump to git/source control shortcut/command for current file

Just wondering if anyone knows if there is a shortcut or command in vscode that will jump the current file to the source control tab?

I know that if you're in source control, cmd + ; will jump you to the file alone, but if you want to get back to the source control view, is there a reverse command?

Thanks!

You can add a keyboard shortcut to jump to git changes view like so:

{
  "key": "shift+cmd+;",
  "command": "git.openChange"
},
{
  "key": "cmd+;",
  "command": "git.openFile"
}

then you can use cmd+; from within a file to jump to its git changes and shift+cmd+; to jump back.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM