Visual studio code快捷键
{"key": "escape", "command": "cancelSelection", "when": "editorHasSelection && editorTextFocus"},
{"key": "ctrl+shift+alt+down", "command": "cursorColumnSelectDown", "when": "editorTextFocus"},
{"key": "ctrl+u", "command": "cursorUndo", "when": "editorTextFocus"},
{"key": "backspace", "command": "deleteLeft", "when": "editorTextFocus"},
{"key": "delete", "command": "deleteRight", "when": "editorTextFocus" },
{"key": "ctrl+i", "command": "expandLineSelection", "when": "editorTextFocus" },
{"key": "shift+tab", "command": "outdent", "when": "editorTextFocus && !editorTabMovesFocus" },
{"key": "tab", "command": "tab", "when": "editorTextFocus && !editorTabMovesFocus" },
{"key": "escape", "command": "removeSecondaryCursors", "when": "editorHasMultipleSelections && editorTextFocus" },
{"key": "ctrl+[", "command": "editor.action.outdentLines", "when": "editorTextFocus" },
{"key": "ctrl+]", "command": "editor.action.indentLines", "when": "editorTextFocus" },
{"key": "f12", "command": "editor.action.goToDeclaration", "when": "editorTextFocus" },
{"key": "ctrl+shift+space", "command": "editor.action.triggerParameterHints", "when": "editorTextFocus" },
{"key": "ctrl+space", "command": "editor.action.triggerSuggest", "when": "editorTextFocus" },
{"key": "ctrl+w", "command": "workbench.action.closeActiveEditor" },
{"key": "ctrl+f4", "command": "workbench.action.closeActiveEditor" },
{"key": "ctrl+alt+left", "command": "workbench.action.focusLeftEditor" },
{"key": "ctrl+alt+right", "command": "workbench.action.focusRightEditor" },
{"key": "ctrl+g", "command": "workbench.action.gotoLine" },
{"key": "alt+left", "command": "workbench.action.navigateBack" },
{"key": "alt+right", "command": "workbench.action.navigateForward" },
{"key": "ctrl+tab", "command": "workbench.action.openPreviousEditor" },
{"key": "ctrl+e", "command": "workbench.action.quickOpen" },
{"key": "f1", "command": "workbench.action.showCommands" },
{"key": "ctrl+\\", "command": "workbench.action.splitEditor" },
{"key": "f11", "command": "workbench.action.toggleFullScreen" },
Visual studio code快捷键的更多相关文章
- Visual Studio Code 快捷键大全(Windows)
Visual Studio Code 是一款优秀的编辑器,非常适合编写 TS 以及 React .最近在学习 AngularJs 2,开始使用 VSCode,特意整理翻译了一下官网的快捷键.因为已经习 ...
- Visual Studio Code - 快捷键
默认快捷键 Visual Studio Code 默认快捷键 代码提示(自动补全,自动完成) 默认是快捷键是Ctrl+Space,与搜狗输入法切换中英文的快捷键冲突了..可以改搜狗输入法的快捷键(Sh ...
- visual studio code 快捷键-(转自 浅笑千寻)
Visual Studio Code之常备快捷键 官方快捷键大全:https://code.visualstudio.com/docs/customization/keybindings Visual ...
- Visual Studio Code 快捷键大全(最全)
Visual Studio Code 是一款优秀的编辑器,对于开发前端带来了很多便利,熟悉快捷键的使用,能够起到事半功倍的作用,提高工作效率.下面就Visual Studio Code常用快捷键的一些 ...
- Visual Studio Code快捷键_Linux
Keyboard shortcuts for Linux Basic editing Ctrl + X Cut line(empty selection) Ctrk + C Copy line(e ...
- visual studio code快捷键(mac)
常用快捷键 命令 命令描述 备注 ctl+j 多行文字变成一行 打开首选项->键盘快捷方式->搜索 joinLines: 然后设置你的快捷键再回车即可.
- 快捷键-Visual Studio Code快捷键
Shift+Enter 在Python终端中运行选定内容/行 C
- Visual Studio Code快捷键大全
原文链接:https://segmentfault.com/a/1190000007688656 常用 General 按 Press 功能 Function Ctrl + Shift + P,F1 ...
- Visual Studio Code常用设置及快捷键
1. Visual Studio Code常用设置 { // 控制是否显示 minimap(缩略图) "editor.minimap.enabled": false, // 控制折 ...
随机推荐
- java参数传递
关于方法的参数传递,java中方法的参数传递均为值传递,根据传递的类型以及方法中对参数的处理可以分为2类: 1.传递参数为基本数据类型,因为是值传递,所以方法运行结束后对传递参数的值无影响. 2.传递 ...
- 如何用QUnit为JS代码做单元测试
非常好的入门文章: http://www.zhangxinxu.com/wordpress/2013/04/qunit-javascript-unit-test-%E5%8D%95%E5%85%83% ...
- Cause: net.sf.cglib.beans.BulkBeanException; nested exception is com.ibatis.common.jdbc.exception.NestedSQLException:
2017-03-13 15:40:15,003 ERROR [com.hisense.hitv.service.dotexc.impl.DotExcPolicyServiceImpl.updateD ...
- OpenCV中phase函数计算方向场
一.函数原型 该函数参数angleInDegrees默认为false,即弧度,当置为true时,则输出为角度. phase函数根据函数来计算角度,计算精度大约为0.3弧度,当x,y相等时,angle ...
- sp1是什么意思
sp1是什么意思... ----------------------------- ------------------------------ 一.补丁包 SP = service pack ,补丁 ...
- HTML5无插件多媒体Media——音频audio与视频video
文件日志地址 http://blog.csdn.net/q1056843325/article/details/60336226 音频与视频现在已经变得越来越流行 各个网站为了保证跨浏览器的兼容性 ...
- Requests抓取有道翻译结果
Requests比urllib更加方便,抓取有道翻译非常的简单. import requests class YouDao(): def __init__(self,parm): ...
- Struts2流程分析与工具配置
1. 运行流程 请求 -- StrutsPrepareAndExecuteFilter 核心控制器 -– Interceptors 拦截器(实现代码功能 ) -– Action 的execuute - ...
- Java入门(3)—— 数组
数组 概述:数组就是一个容器可以存放固定个数的单一数据类型 特点: 容器 长度是固定的 数组里面的元素的数据类型要一致 定义数组: 1.先声明,后初始化 声明: 数据类型[] 数组名; // 标识符命 ...
- 【前端】vue.js环境配置以及实例运行简明教程
vue.js环境配置以及实例运行简明教程 声明:本文档编写参考如下两篇博客,是对它们的修改与补充,欢迎点击链接查看原文: 原文1:vue.js在windows本地下搭建环境和创建项目 原文2:Vue. ...