Vscode git 快捷方式 "ctrl+enter to commit on master" 不适用于 Linux mint
Vscode git shortcut "ctrl+enter to commit on master" not working on Linux mint
enter image description here
GitHub 的给定快捷方式 None 无效。我无法使用鼠标或键盘在源代码管理部分中使用 git 功能。我正在使用 Linux Mint 19.3 Tricia。
我在 keybindings.json 中覆盖了默认的 gitlens 命令,但是在该插件的最新版本中 "when" 属性 的值从
改变了
{
"key": "alt+a",
"command": "gitlens.toggleFileBlame",
"when": "editorTextFocus && gitlens:isTracked"
},
至:
{
"key": "alt+a",
"command": "gitlens.toggleFileBlame",
"when": "editorTextFocus && gitlens:activeIsBlameable"
},
问题已通过合并此代码解决
"git.suggestSmartCommit": true,
在 settings.json 文件中
enter image description here
GitHub 的给定快捷方式None 无效。我无法使用鼠标或键盘在源代码管理部分中使用 git 功能。我正在使用 Linux Mint 19.3 Tricia。
我在 keybindings.json 中覆盖了默认的 gitlens 命令,但是在该插件的最新版本中 "when" 属性 的值从
改变了{
"key": "alt+a",
"command": "gitlens.toggleFileBlame",
"when": "editorTextFocus && gitlens:isTracked"
},
至:
{
"key": "alt+a",
"command": "gitlens.toggleFileBlame",
"when": "editorTextFocus && gitlens:activeIsBlameable"
},
问题已通过合并此代码解决
"git.suggestSmartCommit": true,
在 settings.json 文件中