博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
编辑器统一 快捷键
阅读量:5136 次
发布时间:2019-06-13

本文共 2444 字,大约阅读时间需要 8 分钟。

1、编辑器统一  快捷键

向下复制一行(或块)          ctrl+D查找(文件中查找)        ctrl+F (ctrl+shift+F)查找下一个(上一个)      F3 (shift+F3)替换(文件中替换)        ctrl+R (ctrl+shift+R)格式化代码             ctrl+Alt+L 删除一行         ctrl+Y 折叠 (展开)       ctrl+ — (ctrl+ +) 行注释          ctrl+/ 块注释          ctrl+shirt+/ 定位到某一行       ctrl+G 光标跳到代码块的头部(尾部)ctrl+[ (ctrl+]) 书签 (下一个,上一个)  F11 (F2, shift+F2) 前进 (后退)                  Alt + ← (Alt + →)

 

2、vscode编辑器快捷方式

1 // 将按键绑定配置放入此文件中即可覆盖默认值 2 [ 3     { 4         "key": "ctrl+d", 5         "command": "editor.action.copyLinesDownAction", 6         "when": "editorFocus" 7     }, 8     { 9         "key": "ctrl+shift+d",10         "command": "-editor.action.copyLinesDownAction",11         "when": "editorFocus"12     },13     {14         "key": "ctrl+r",15         "command": "editor.action.startFindReplaceAction"16     },17     {18         "key": "ctrl+h",19         "command": "-editor.action.startFindReplaceAction"20     },21     {22         "key": "ctrl+shift+oem_minus",23         "command": "editor.foldAll",24         "when": "editorTextFocus"25     },26     {27         "key": "ctrl+k ctrl+0",28         "command": "-editor.foldAll",29         "when": "editorTextFocus"30     },31     {32         "key": "ctrl+shift+oem_plus",33         "command": "editor.unfoldAll",34         "when": "editorTextFocus"35     },36     {37         "key": "ctrl+k ctrl+j",38         "command": "-editor.unfoldAll",39         "when": "editorTextFocus"40     },41     {42         "key": "ctrl+shift+oem_2",43         "command": "editor.action.blockComment",44         "when": "editorTextFocus && !editorReadonly"45     },46     {47         "key": "shift+alt+a",48         "command": "-editor.action.blockComment",49         "when": "editorTextFocus && !editorReadonly"50     },51     {52         "key": "ctrl+y",53         "command": "editor.action.deleteLines",54         "when": "textInputFocus && !editorReadonly"55     },56     {57         "key": "ctrl+shift+k",58         "command": "-editor.action.deleteLines",59         "when": "textInputFocus && !editorReadonly"60     },61     {62         "key": "ctrl+alt+l",63         "command": "editor.action.formatDocument",64         "when": "editorTextFocus && !editorReadonly"65     },66     {67         "key": "shift+alt+f",68         "command": "-editor.action.formatDocument",69         "when": "editorTextFocus && !editorReadonly"70     }71 ]
View Code

 

转载于:https://www.cnblogs.com/wfblog/p/9637549.html

你可能感兴趣的文章
抢红包游戏
查看>>
android 沉浸通知栏
查看>>
saltstack SLS文件
查看>>
Linux-各种姿势(less\vi等)打开各种类型的文件(txt/csv/xlsx等)出现不能打开(全乱码、部分乱码、二进制文件等)的问题...
查看>>
演示Spring框架的JDBC模板的简单操作
查看>>
【Linux】【Services】【SaaS】Docker+kubernetes(2. 配置NTP服务chrony)
查看>>
Core Animation学习
查看>>
QT快捷键
查看>>
您上次已将进行的搜狗输入法的安装或卸载,操作要求重启。您在重启之后才能继续新的输入法安装卸载程序。...
查看>>
MySQL数据库应用 从入门到精通 学习笔记
查看>>
[转载]Ocelot简易教程(二)之快速开始2
查看>>
设计模式的七大原则
查看>>
java保留两位小数的方法
查看>>
Oracle中将查询出的多条记录的某个字段拼接成一个字符串的方法
查看>>
Centos6安装SaltStack
查看>>
网络编程练习 -- POST-JSON数据
查看>>
php判断是手机访问还是电脑访问
查看>>
链接字符收藏
查看>>
Exchange 2016中的削减内容
查看>>
Dicom DIR文件格式
查看>>