vscode-gitlens icon indicating copy to clipboard operation
vscode-gitlens copied to clipboard

better keybinding/shortcut to show scmView in order to deal with conflict

Open heartacker opened this issue 4 years ago • 2 comments
trafficstars

gitlen hijack the key ctrl+shift+g which to show scm view, maybe some of user notice that it could use ctrl+shift+g g in stead and other user would not.

after few days experience of gitlens and my muscle Memory tells me that we could use ctrl+shift+g+ ctrl+shift+g to show the scm.view. that will be great to have it.

what in my mind is: one ctrl+shift+g, scmview wouldn't show, Intuitively press again ctrl+shift+g.

and notice that that will be an better experience. image

{
  "key": "ctrl+shift+g g",
  "command": "workbench.view.scm",
  "when": "workbench.scm.active && !gitlens:disabled && config.gitlens.keymap == 'chorded'"
},
{
  "key": "ctrl+shift+g ctrl+shift+g", // add another key
  "command": "workbench.view.scm",
  "when": "workbench.scm.active && !gitlens:disabled && config.gitlens.keymap == 'chorded'"
}

heartacker avatar Aug 27 '21 11:08 heartacker

another reason why we need is that: with other language IME, single key/char would raise the IME key board, image SO that there are many people(LIKE Chinese users) couldn't use ctrl+shift+g g to trigger.

so, ctrl+shift+gctrl+shift+g is better and great . please

heartacker avatar Aug 27 '21 11:08 heartacker

can anybody see this:

https://github.com/gitkraken/vscode-gitlens/pull/1618

heartacker avatar Aug 31 '22 13:08 heartacker