Visual Studio Code 快捷键更改为 Intellij IDEA
VS Code IDEA 大约 1687 字插件
VS Code
中有一款插件叫做IntelliJ IDEA Keybindings
下载
下载页面:https://github.com/kasecato/vscode-intellij-idea-keybindings/releases
插件格式:vsix
安装
VS Code
安装时会在PATH
环境变量中添加他的文件路径,也可以在code.exe
(VS Code
在安装目录中的名称为code.exe
)所在目录执行。
code --install-extension intellij-idea-keybindings-1.4.4.vsix
重启 VS Code
可能需要重启一下VS Code
。
备注
有些快捷键无法被更改,可以去插件主页详细查看具体哪些快捷键不支持。
插件主页
https://github.com/kasecato/vscode-intellij-idea-keybindings
keybindings.json
[
{
"key": "alt+/",
"command": "editor.action.triggerSuggest",
"when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly"
},
{
"key": "ctrl+space",
"command": "-editor.action.triggerSuggest",
"when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly"
},
{
"key": "alt+/",
"command": "toggleSuggestionDetails",
"when": "suggestWidgetVisible && textInputFocus"
},
{
"key": "ctrl+space",
"command": "-toggleSuggestionDetails",
"when": "suggestWidgetVisible && textInputFocus"
},
{
"key": "alt+left",
"command": "-workbench.action.navigateBack"
},
{
"key": "alt+left",
"command": "workbench.action.navigateBack"
},
{
"key": "alt+right",
"command": "-workbench.action.navigateForward"
},
{
"key": "alt+right",
"command": "workbench.action.navigateForward"
},
{
"key": "ctrl+alt+left",
"command": "-workbench.action.navigateBack"
},
{
"key": "ctrl+alt+right",
"command": "-workbench.action.navigateForward"
}
]
阅读 5794 · 发布于 2021-07-03
————        END        ————
Give me a Star, Thanks:)
https://github.com/fendoudebb扫描下方二维码关注公众号和小程序↓↓↓

昵称:
随便看看
换一批
-
GoJS 浏览器窗口缩放后自动居中对齐阅读 1972
-
JavaScript 对象阅读 1304
-
OpenResty lua-resty-auto-ssl: failed to set ocsp stapling for阅读 2175
-
Java 中的 InheritableThreadLocal阅读 1878
-
IDEA 复制弹框错误提示信息快捷键阅读 1094
-
MySQL 字符串拼接阅读 3230
-
Spring Boot Thymeleaf 循环遍历阅读 99
-
JMeter 多用户不同 Cookie 压测接口阅读 3029
-
Linux Ubuntu 修改默认编辑器为 Vim阅读 2107
-
Git 提示 You asked me to pull without telling me which branch you...阅读 4879