最近从Sublime3切换到VScode,总结下快捷键。
官方地址:https://code.visualstudio.com...
简单的配置
{ "files.autoSave": "off", //禁用自动保存 "workbench.iconTheme": "vs-minimal", "explorer.autoReveal": false, //禁止资源管理器在打开文件时自动显示并选择它们,类似于禁用Eclipse的link editor "workbench.editor.enablePreviewFromQuickOpen": false, //使Ctrl+P打开的文件使用新的tab页,而不是替换已有的 "workbench.editor.enablePreview": false //使得鼠标左键打开的文件使用新的tab页,而不是替换已有的 }1、通用
Ctrl+Shif+P , F1 打开命令面板 Ctrl+P 快速打开
Ctrl+Shift+N 打开新实例窗口 Ctrl+Shift+W 关闭窗口实例
Ctrl+X 剪切 Ctrl+C 复制
Alt+下/上 移动行 shift+Alt+上/下 复制行
Ctrl+Shift+K 删除行 ,改成Ctrl+D
Ctrl+(Shift)+Enter 插入行
Ctrl+Shift+ 跳转到匹配的括号
Ctrl+[/] 行缩进
Ctrl+Shift+[/] 代码折叠
Ctrl+/ 行注释,Shift+Alt+A 块注释 ,改成Ctrl+shif+/
Alt+Z 是否换行(word wrap)
Ctrl+空格键 智能提示 ,改成Alt+/
Ctrl+Shift+Space 参数提示,Tab 自动补全
Ctrl+K Ctrl+I 显示悬停(类似于鼠标hover悬停,一般用于触发提示)
Shift+Alt+F 格式化文档(改成Ctrl+Shift+F),Ctrl+K Ctrl+F 格式化选中代码
F12 跳转定义,Alt+F12 查看定义 分别改成F3,Alt+F3
Ctrl+K F12 在侧边打开定义
Ctrl+. 快速修复
Shift+F12 显示引用
F2 重命名变量
Ctrl+K M 更改文件语言类型
Ctrl+T 显示所有变量、函数名等 #
Ctrl+G 跳转行
Ctrl+P 打开文件
Ctrl+Shift+O 跳转到变量、函数等@
Ctrl+Shift+M 显示终端、错误等程序面板
F8 跳转到下一个错误或警告,改成Ctrl+,
Shift+F8 跳转到上一个错误或警告, 改成ctrl+shift+,
Ctrl+Shift+Tab 切换编辑器,我改成了Ctrl+E
Alt+左/右 向前/后
Ctrl+M 切换tab焦点
Ctrl+F , Ctrl+H , F3/SHift+F3
Alt+Enter 选中所有匹配搜索的
Ctrl+I 选中当前行
Alt+Click 插入多个光标
Ctrl+Alt+上/下 插入多个光标 ,改成Ctrl++Shift+Alt+上/下
Ctrl+U 撤销上一次光标操作
Shift+Alt+I 在选中的所有行末尾插入光标
Ctrl+Shift+L , Ctrl+F2 都可以选中文中所有和当前的选择或单词同名的,重构重命名时很方便
Shift+Alt+左/右 缩小、扩大选择区块
Shift+Alt+鼠标拖拽 , Ctrl+Shift+Alt+方向键 列选择
Ctrl+Shift+Alt+PgUp/PgDown 列页选择
Ctrl+W, Ctrl+F4 关闭当前编辑器 , Ctrl+K Ctrl+W关闭所有
Ctrl+Shift+T 重新打开上一次关闭的编辑器
Ctrl+K F 关闭目录
Ctrl+ 分割编辑器
Ctrl+1/2/3 转移编辑器焦点到不同编辑组
Ctrl+K (Ctrl+)左/右 转移编辑器焦点到左右组
Shift+F10显示上下文菜单
Ctrl+N 新建文件,Ctrl+O 打开文件
Ctrl+S , Ctrl+Shift+S , Ctrl+K S 保存,另存为,保存所有
Ctrl+K P 复制文件路径
Ctrl+K R 在资源管理器中打开文件
Ctrl+K O 在新窗口打开文件
F11 全屏
Shift+Alt+1 改变编辑器布局
Ctrl+ =/- 放大或缩小
Ctrl+B 开关侧边栏
Ctrl+Shift+E 焦点放到Explorer
Ctrl+Shift+F 焦点放到搜索,改成ctrl+alt+f
Ctrl+Shift+G 焦点放Git
Ctrl+Shift+D 焦点放到Debug
Ctrl+Shift+X 焦点放到扩展
Ctrl+Shift+H replace in files
F9 设置断点
F5 开始/继续
Shift+F5 停止
F11/Shift+F11 step into/out
F10 step over
Ctrl+K Ctrl+I show hover
Ctrl+` 显示集成的终端
Ctrl+Shift+` 创建新的终端
Ctrl+Shift+C 复制选中
Ctrl+Shift+V 粘贴到终端
Ctrl+↑ / ↓ Scroll up/down
Shift+PgUp / PgDown Scroll page up/down
Ctrl+Home / End Scroll to top/bottom
// 将键绑定放入此文件中以覆盖默认值 [{ "key": "alt+/", "command": "editor.action.triggerSuggest", "when": "editorHasCompletionItemProvider && editorTextFocus && !editorReadonly" }, { "key": "ctrl+d", "command": "editor.action.deleteLines", "when": "editorTextFocus && !editorReadonly" }, { "key": "ctrl+shift+/", "command": "editor.action.blockComment", "when": "editorTextFocus && !editorReadonly" }, { "key": "ctrl+shift+f", "command": "editor.action.formatDocument", "when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly" }, { "key": "f3", "command": "editor.action.goToDeclaration", "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" }, { "key": "alt+f3", "command": "editor.action.goToImplementation", "when": "editorHasImplementationProvider && editorTextFocus && !isInEmbeddedEditor" }, { "key": "ctrl+e", "command": "workbench.action.openPreviousRecentlyUsedEditorInGroup" }, { "key": "ctrl+,", "command": "editor.action.marker.next", "when": "editorFocus && !editorReadonly" }, { "key": "ctrl+shift+,", "command": "editor.action.marker.prev", "when": "editorFocus && !editorReadonly" }, { "key": "ctrl+shift+alt+up", "command": "editor.action.insertCursorAbove", "when": "editorTextFocus" }, { "key": "ctrl+shift+alt+down", "command": "editor.action.insertCursorBelow", "when": "editorTextFocus" }, { "key": "ctrl+alt+f", "command": "search.action.focusActiveEditor", "when": "searchInputBoxFocus && searchViewletVisible" } ]
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/67112.html
最近从Sublime3切换到VScode,总结下快捷键。 官方地址:https://code.visualstudio.com... 简单的配置 { files.autoSave: off, //禁用自动保存 workbench.iconTheme: vs-minimal, explorer.autoReveal: false, //禁止资源管理器在打开文件时自动显示...
最近从Sublime3切换到VScode,总结下快捷键。 官方地址:https://code.visualstudio.com... 简单的配置 { files.autoSave: off, //禁用自动保存 workbench.iconTheme: vs-minimal, explorer.autoReveal: false, //禁止资源管理器在打开文件时自动显示...
本文收集学习过程中使用到的资源。 持续更新中…… 项目地址 https://github.com/abc-club/f... 目录 vue react react-native Weex typescript Taro nodejs 常用库 css js es6 移动端 微信公众号 小程序 webpack GraphQL 性能与监控 高质文章 趋势 动效 数据结构与算法 js core 代码规范...
摘要:前言一直混迹社区突然发现自己收藏了不少好文但是管理起来有点混乱所以将前端主流技术做了一个书签整理不求最多最全但求最实用。 前言 一直混迹社区,突然发现自己收藏了不少好文但是管理起来有点混乱; 所以将前端主流技术做了一个书签整理,不求最多最全,但求最实用。 书签源码 书签导入浏览器效果截图showImg(https://segmentfault.com/img/bVbg41b?w=107...
阅读 2541·2021-11-23 09:51
阅读 2457·2021-09-30 09:48
阅读 1046·2021-09-10 10:51
阅读 2162·2021-08-12 13:22
阅读 3523·2021-08-11 10:24
阅读 2101·2019-08-30 15:55
阅读 586·2019-08-30 14:05
阅读 3180·2019-08-30 13:03