vscode-gitlens
vscode-gitlens copied to clipboard
better keybinding/shortcut to show scmView in order to deal with conflict
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.

{
"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'"
}
another reason why we need is that:
with other language IME, single key/char would raise the IME key board,
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
can anybody see this:
https://github.com/gitkraken/vscode-gitlens/pull/1618