vsCode快捷键设置
- // 快捷键设置 keyiing.json
- // 将键绑定放入此文件中以覆盖默认值
- [
- /* // 转换大写
- {
- "key" : "ctrl+shift+u",
- "command" : "editor.action.transformToUppercase",
- "when" : "editorTextFocus"
- },
- // 转换小写
- {
- "key" : "ctrl+shift+l",
- "command" : "editor.action.transformToLowercase",
- "when" : "editorTextFocus"
- },*/
- // 定制与 sublime 相同的大小写转换快捷键,需安装 TextTransform 插件
- {
- "key": "ctrl+k ctrl+u",
- "command": "uppercase",
- "when": "editorTextFocus"
- },
- {
- "key": "ctrl+k ctrl+l",
- "command": "lowercase",
- "when": "editorTextFocus"
- },
- // ctrl+space 被切换输入法快捷键占用
- // {
- // "key": "ctrl+alt+space",
- // "command": "editor.action.triggerSuggest",
- // "when": "editorTextFocus"
- // },
- // ctrl+d 删除一行
- {
- "key": "ctrl+d",
- "command": "editor.action.deleteLines",
- "when": "editorTextFocus"
- },
- // 选中高亮
- {
- "key": "alt+d",
- "command": "editor.action.addSelectionToNextFindMatch",
- "when": "editorFocus"
- },
- // ctrl+shift+/多行注释
- {
- "key": "ctrl+shift+/",
- "command": "editor.action.blockComment",
- "when": "editorTextFocus"
- },
- // 高亮文本编辑颜色
- {
- "key": "alt+q",
- "command": "textmarker.markText",
- "when": "editorTextFocus"
- },
- // 清除文本编辑颜色
- {
- "key": "alt+z",
- "command": "textmarker.clearAllHighlight",
- "when": "editorTextFocus"
- },
- // 注释table化
- // {
- // "key": "alt+t",
- // "command": "extension.table.formatCurrent",
- // "when": "editorTextFocus"
- // },
- // 格式化热键 覆盖点击文件的快捷键
- // {
- // "key" : "alt+f",
- // "command": "editor.action.format",
- // "when" : "editorHasFormattingProvider && editorTextFocus && !editorReadonly"
- // },
- // 复制一行到下一行
- {
- // "key" : "ctrl+shift+c",
- "key": "alt+c",
- // "command": "editor.action.fLinesDownAction",
- "command": "editor.action.copyLinesDownAction",
- "when": "editorTextFocus"
- },
- // 复制一行到下一行
- // {
- // "key": "alt+shift+j",
- // "command": "editor.Add.doc.comments",
- // "when": "editorTextFocus"
- // },
- // 快速添加注释信息
- {
- "key": "ctrl+alt+j",
- // "command": "docthis.documentEverythingVisible"
- // "command": "docthis.documentEverything"
- "command": "docthis.documentThis"
- },
- // // log日志打印参数信息
- // {
- // "key": "ctrl+t",
- // "command": "extension.insertLogStatement",
- // "when": "editorTextFocus"
- // },
- // 清除所有log日志
- {
- "key": "alt+shift+l",
- "command": "extension.deleteAllLogStatements"
- },
- // 调试快捷键 以防占用
- {
- "key": "ctrl+shift+d",
- "command": "workbench.view.debug"
- },
- //逗号分隔
- {
- "key": "alt+shift+w",
- "command": "words"
- },
- //驼峰命名小写下划线
- {
- "key": "alt+s",
- "command": "snakeCase"
- },
- // // 替换选择
- // {
- // "key": "alt+r",
- // "command": "replace"
- // },
- //驼峰命名小写
- {
- "key": "alt+e",
- "command": "camelCase"
- },
- //括号匹配
- {
- "key": "alt+m",
- "command": "expand-selection-to-scope.expand"
- },
- //快捷建立方法method
- {
- "key": "alt+f",
- "command": "cmstead.jsRefactor.wrapInExecutedFunction"
- },
- // // json转对象
- // {
- // "key": "ctrl+shift+j",
- // "command": "jsonToJSObject.convert"
- // },
- // 去除空格
- {
- "key": "ctrl+;",
- "command": "blankLine.process"
- },
- // : = 对齐
- {
- "key": "alt+=",
- "command": "alignment.align",
- "when": "editorHasSelection"
- },
- // 选择一行 下选择
- {
- "key": "ctrl+s",
- "command": "expandLineSelection",
- "when": "editorTextFocus"
- },
- //调试debug
- // {
- // "key": "alt+3",
- // "command": "workbench.action.debug.restart",
- // "when": "inDebugMode"
- // },
- // {
- // "key": "ctrl+t",
- // "command": "extension.translateon",
- // "when": "editorTextFocus"
- // }
- // log日志打印参数信息
- // {
- // "key": "ctrl+enter",
- // "command": "extension.complete-statement",
- // "when": "editorTextFocus"
- // },
- // log日志打印参数信息
- {
- "key": "alt+w",
- "command": "extension.insertLogStatement",
- "when": "editorTextFocus"
- }
- // ,
- // // tab element键设置
- // {
- // "key": "alt+a",
- // "command": "editor.emmet.action.expandAbbreviation",
- // "when": "config.emmet.triggerExpansionOnTab && editorTextFocus && !config.emmet.useNewEmmet && !editorHasMultipleSelections && !editorHasSelection && !editorReadonly && !editorTabMovesFocus"
- // }
- ]
vsCode快捷键设置的更多相关文章
- VSCode 同步设置及扩展插件 实现设备上设置统一
准备工作:电脑上需安装VSCode,拥有一个github账户.实现同步的功能主要依赖于VSCode插件 "Settings Sync" Setting Sync 可同步包含的所有扩 ...
- vscode快捷键
vscode快捷键 按 ctrl+shift+p 查找设置文件Ctrl + W 关闭编辑器 设置定位到终端的快捷键:打开键盘配置文件,搜索focus terminal,找到聚焦到终端的命令,添加ctr ...
- VScode快捷键、Chrome快捷键知识小总结和状态码
一.VS code的一些快捷键 Shift + Delete 删除一整行 ctrl + Delete 删除光标之后到标点的数据 Delete 删除光标之后 ...
- Mac 键盘符号 及VSCode快捷键 说明
Mac 键盘符号说明 ⌘ == Command ⇧ == Shift ⇪ == Caps Lock ⌥ == Option ⌃ == Control ↩ == Return/Enter ⌫ == De ...
- VScode基础设置
安装依赖包: • One Monokai • Aglia • One Dark Pro • Material Icon 漂亮的主题: Themes Quokka 是一个调试工具插件,能够根据你正在 ...
- 动图演示23个鲜为人知的VSCode快捷键
动图演示23个鲜为人知的VSCode快捷键 原文地址:dev.to/devmount/23… 代码同步浏览器 安装vccode 安装live server插件 尽管我在VS Code中经常使用许多快捷 ...
- vscode快速生成html模板(vscode快捷键"!"生成html模板)
问题: 在vscode中新建test.html, 内容是空白的,输入"!",然后按tap键 ,没有生成常见的html模板,也就是如下: 输入! html html:5 DOCTYP ...
- VS CODE一些常见配置操作(快捷键设置、C/C++的debug、代码路径配置)
总述 今天来一篇简单的操作文章吧,VSCODE是我们经常用的软件,我之前也写过关于VSCODE远程办公的一些的操作(有兴趣的朋友可以点击进去看看),今天我再稍微介绍一些我其他地方用到的一些操作 ...
- vscode常用设置
1.代码提示快捷键设置:(keybindings.json) { "key": "ctrl+j","command": "edit ...
随机推荐
- c++ demo
#include "stdafx.h" #include <boost\version.hpp> #include <boost\config.hpp> # ...
- 【NPOI】WebAPI-使用NPOI导出Excel
1.安装nuget包 2.封装方法 public byte[] ExportToByteArray(IEnumerable<string> headerText, IEnumerable& ...
- 力扣(LeetCode)832. 翻转图像
给定一个二进制矩阵 A,我们想先水平翻转图像,然后反转图像并返回结果. 水平翻转图片就是将图片的每一行都进行翻转,即逆序.例如,水平翻转 [1, 1, 0] 的结果是 [0, 1, 1]. 反转图片的 ...
- leecode第七题(整数反转)
题解给的思路: ; class Solution { public: int reverse(int x) { ;//如果这里还是int,会在判断前就被裁剪了,无法判断溢出 ; ) flag=; wh ...
- 用sql plus时,显示协议适配器错误
1.在桌面右击我的电脑图标——选择栏中选择管理,点击并进入计算机管理 2.进入计算机管理界面后,点击服务和应用程序,然后在右边栏目选择服务,双击进入服务进程 3.进入服务进程后,鼠标下滑,一直下滑找到 ...
- MySQL processlist/kill
1.show full processlist 显示MySQL所有正在执行的进程,用于查看当前的MySQL运行情况,避免死锁等导致的异常情况. 主要的列: Id:进程Id User:登录账号 Host ...
- postMan用法
增加: 删除: 更改: 查询:
- (转)Nandflash读写
------------------------------------------------------------------------------------------文章1------- ...
- django-simple-captcha 验证码插件介绍 django-simple-captcha 使用 以及添加动态ajax刷新验证
django-simple-captcha作为一款django的验证码插件,使用方法非常简单,能够快速应用到web应用中. 文档官网地址:django-simple-captcha 参考博客:http ...
- (Gorails) activeStore模块,把一堆属性放在一个hash对象内。gem 'activerecord-typedstore'增强了store模块,更好用了
https://api.rubyonrails.org/classes/ActiveRecord/Store.html https://gorails.com/episodes/preferences ...