手把手将 VSCode 快捷键修改为 Eclipse 的快捷键

1.在 vscode 上方搜索栏输入 >keyboard

2. 选择图中红框的内容

3.将Eclipse的常用快捷键复制进去

{

"key": "ctrl+d",

"command": "-editor.action.addSelectionToNextFindMatch",

"when": "editorFocus"

},

{

"key": "ctrl+d",

"command": "editor.action.deleteLines",

"when": "textInputFocus && !editorReadonly"

},

{

"key": "ctrl+shift+k",

"command": "-editor.action.deleteLines",

"when": "textInputFocus && !editorReadonly"

},

{

"key": "ctrl+alt+up",

"command": "editor.action.copyLinesUpAction",

"when": "editorTextFocus && !editorReadonly"

},

{

"key": "shift+alt+up",

"command": "-editor.action.copyLinesUpAction",

"when": "editorTextFocus && !editorReadonly"

},

{

"key": "ctrl+alt+down",

"command": "editor.action.copyLinesDownAction",

"when": "editorTextFocus && !editorReadonly"

},

{

"key": "shift+alt+down",

"command": "-editor.action.copyLinesDownAction",

"when": "editorTextFocus && !editorReadonly"

},

相关推荐
罗政7 小时前
冒险岛079 V8 整合版源码搭建教程+IDEA启动
java·ide·intellij-idea
艾斯比的日常8 小时前
VSCode 实用快捷键
ide·vscode·编辑器
Galaxy_12298 小时前
vscode远程报错:Remote host key has changed,...
ide·vscode·编辑器
彬sir哥8 小时前
VScode运行后出现黑窗口
vscode·运行·黑窗口
Hi~晴天大圣14 小时前
Pycharm中断点使用技巧
ide·python·pycharm
且随疾风前行.15 小时前
Android Studio 提示 !Failed to initialize editor
android·ide·android studio
比牛顿更懂PID15 小时前
VSCode本地python包“无法解析导入”
ide·vscode·python
qxyywy18 小时前
CUDA 安装 一直卡在Installing Nsight Visual Studio Edition
ide·visual studio·cuda
前端郭德纲19 小时前
vscode默认终端怎么设置成git bash
git·vscode·bash
瞌睡不来20 小时前
(学习总结25)Linux工具:vim 编辑器 和 gcc/g++ 编译器
linux·学习·编辑器·vim·编译器·gcc/g++