Explorar el Código

Fixes #462 - Don't override SCM shortcut (⌃⇧G) on macOS

main
Eric Amodio hace 6 años
padre
commit
7a34e98f50
Se han modificado 2 ficheros con 5 adiciones y 1 borrados
  1. +3
    -0
      CHANGELOG.md
  2. +2
    -1
      package.json

+ 3
- 0
CHANGELOG.md Ver fichero

@ -9,6 +9,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Changes commit search by sha to jump directly to the commit (if one is found), rather than having to click through to the commit
- Updates settings descriptions to better support the new settings editor in vscode
### Fixed
- Fixes [#462](https://github.com/eamodio/vscode-gitlens/issues/462) - Source Control shortcut on macOS (⌃⇧G) shouldn't be overridden
## [8.5.3] - 2018-07-25
### Fixed
- Fixes [#454](https://github.com/eamodio/vscode-gitlens/issues/454) - Search for string returns merge commits (unlike raw `git log -S`)

+ 2
- 1
package.json Ver fichero

@ -3451,7 +3451,8 @@
},
{
"command": "workbench.view.scm",
"key": "ctrl+shift+g g",
"key": "ctrl+alt+g g",
"mac": "ctrl+shift+g",
"when": "gitlens:keymap == chorded && gitlens:enabled"
}
],

Cargando…
Cancelar
Guardar