{"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快捷键的更多相关文章

  1. Visual Studio Code 快捷键大全(Windows)

    Visual Studio Code 是一款优秀的编辑器,非常适合编写 TS 以及 React .最近在学习 AngularJs 2,开始使用 VSCode,特意整理翻译了一下官网的快捷键.因为已经习 ...

  2. Visual Studio Code - 快捷键

    默认快捷键 Visual Studio Code 默认快捷键 代码提示(自动补全,自动完成) 默认是快捷键是Ctrl+Space,与搜狗输入法切换中英文的快捷键冲突了..可以改搜狗输入法的快捷键(Sh ...

  3. visual studio code 快捷键-(转自 浅笑千寻)

    Visual Studio Code之常备快捷键 官方快捷键大全:https://code.visualstudio.com/docs/customization/keybindings Visual ...

  4. Visual Studio Code 快捷键大全(最全)

    Visual Studio Code 是一款优秀的编辑器,对于开发前端带来了很多便利,熟悉快捷键的使用,能够起到事半功倍的作用,提高工作效率.下面就Visual Studio Code常用快捷键的一些 ...

  5. Visual Studio Code快捷键_Linux

    Keyboard shortcuts for Linux Basic editing Ctrl + X Cut line(empty selection) Ctrk + C   Copy line(e ...

  6. visual studio code快捷键(mac)

    常用快捷键 命令 命令描述 备注  ctl+j  多行文字变成一行 打开首选项->键盘快捷方式->搜索 joinLines: 然后设置你的快捷键再回车即可.

  7. 快捷键-Visual Studio Code快捷键

    Shift+Enter 在Python终端中运行选定内容/行 C

  8. Visual Studio Code快捷键大全

    原文链接:https://segmentfault.com/a/1190000007688656 常用 General 按 Press 功能 Function Ctrl + Shift + P,F1 ...

  9. Visual Studio Code常用设置及快捷键

    1. Visual Studio Code常用设置 { // 控制是否显示 minimap(缩略图) "editor.minimap.enabled": false, // 控制折 ...

随机推荐

  1. 20个开发人员非常有用的Java功能代码

    本文将为大家介绍20个对开发人员非常有用的Java功能代码.这20段代码,可以成为大家在今后的开发过程中,Java编程手册的重要部分. 1. 把Strings转换成int和把int转换成String ...

  2. Redis入门 (CentOS7 + Redis-3.2.1)

    1. 编译安装1.1 下载redis # cd /tmp/# wget http://download.redis.io/releases/redis-3.2.1.tar.gz# tar zxvf r ...

  3. -webkit-overflow-scrolling 与滚动回弹效果.

    参考来源:https://developer.mozilla.org/zh-CN/docs/Web/CSS/-webkit-overflow-scrolling https://www.w3cways ...

  4. php sql uuid 32位

    最近表中id需要用到此值来作为唯一主键 其含义是通用唯一识别码.具体好处及应用可百度百科,链接给你https://baike.baidu.com/item/UUID/5921266?fr=aladdi ...

  5. React渲染问题研究以及Immutable的应用

    写在前面 这里主要介绍自己在React开发中的一些总结,关于react的渲染问题的一点研究. 另外本人一直希望在React项目中尝试使用,因此在之前已经介绍过immutable的API,可以参看这里I ...

  6. Java线程池之ThreadPoolExecutor

    前言 线程池可以提高程序的并发性能(当然是合适的情况下),因为对于没有线程的情况下,我们每一次提交任务都新建一个线程,这种方法存在不少缺陷: 1.  线程的创建和销毁的开销非常高,线程的创建需要时间, ...

  7. The C++ Programming Language 学习笔记 第5章 指针、数组和结构

    1.关于输出指向字符的指针的值. 现在定义,char c='a',char* pc=&c.在C中,输出该值只需要printf("%p\n",pc);而在C++中,如果cou ...

  8. 超简单使用批处理(batch)操作数据库

    超简单使用批处理(batch)操作数据库 批处理(batch)是什么 批处理的执行就好比快递员的工作: 未使用批处理的时候,快递员一次从分发点将一件快递发给客户: 使用批处理,则是快递员将所有要派送的 ...

  9. HTTP协议的8种请求类型介绍

    HTTP协议的8种请求类型介绍 转自:http://www.cnblogs.com/liangxiaofeng/p/5798607.html HTTP协议的8种请求类型介绍 HTTP协议中共定义了八种 ...

  10. javascript基础进阶——执行环境及作用域链

    概念 执行环境 执行环境定义了变量或函数有权访问的其他函数,决定了他们各自的行为.每个执行环境都有一个与之关联的变量对象. 变量对象 环境中定义的所有变量和函数都保存在这个对象中. 全局执行环境 全局 ...