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"
}
]
阅读 2228 · 发布于 2021-07-03
————        END        ————
Give me a Star, Thanks:)
https://github.com/fendoudebb扫描下方二维码关注公众号和小程序↓↓↓

昵称:
随便看看
换一批
-
HTTP Content-Type 为 application/x-www-form-urlencoded 时注意事项阅读 2278
-
软考-系统架构设计师:需求结构化分析阅读 1368
-
Docker 部署 PostgreSQL阅读 362
-
软考-系统架构设计师:CISC 与 RISC阅读 2604
-
JavaScript Failed to execute 'requestFullscreen' on 'Element': API can only be initiated by a user gesture.阅读 3128
-
Git 命令之回退到指定 commit阅读 1656
-
Android 每隔一分钟发出时间更新广播阅读 4000
-
Java 并发编程之 CyclicBarrier阅读 1229
-
MySQL 之 where 和 having 的区别阅读 1141
-
Docker 部署 GitLab阅读 463