[//-------------------------------------------------//查找//-------------------------------------------------//下一个查找结果{ "key": "ctrl+=",          "command":"editor.action.moveSelectionToNextFindMatch","when":"editorFocus" },//上一个查找结果{ "key": "ctrl+-",          "command": "editor.action.moveSelectionToPreviousFindMatch","when": "editorFocus" },//当前文件查找{ "key": "ctrl+f",          "command": "actions.find"},//在当前文件中查找当前选中{ "key": "ctrl+e",          "command": "actions.findWithSelection" },//文件夹中查找{ "key": "alt+f",           "command": "workbench.view.search"},{ "key": "alt+f",           "command": "workbench.action.findInFiles","when": "!searchInputBoxFocus" },//-------------------------------------------------//大小写//-------------------------------------------------{ "key": "alt+l",           "command": "editor.action.transformToLowercase" },{ "key": "alt+u",           "command": "editor.action.transformToUppercase"},//-------------------------------------------------//窗口视图//-------------------------------------------------//上一视图{ "key": "ctrl+alt+left",        "command": "workbench.action.navigateBack" },//下一视图{ "key": "ctrl+alt+right",       "command": "workbench.action.navigateForward" },//上一tab页签{ "key": "ctrl+pagedown",   "command": "workbench.action.nextEditor" },//下一tab页签{ "key": "ctrl+pageup",     "command": "workbench.action.previousEditor" },//切换全屏{ "key": "ctrl+alt+m","command": "workbench.action.toggleFullScreen" },//关闭当前tab页签{ "key": "ctrl+w","command": "workbench.action.closeActiveEditor" },{ "key": "ctrl+w","command": "workbench.action.closeWindow","when": "!editorIsOpen" },//将当前tab页签分割{ "key": "ctrl+shift+\\","command": "workbench.action.splitEditor" },{ "key": "ctrl+shift+alt+\\",             "command": "workbench.action.toggleEditorGroupLayout" },//放大缩小{ "key": "ctrl+numpad_add",        "command": "workbench.action.zoomIn" },{ "key": "ctrl+numpad_subtract",   "command": "workbench.action.zoomOut" },{ "key": "ctrl+numpad0",           "command": "workbench.action.zoomReset" },{ "key": "alt+e",           "command": "workbench.view.explorer" },{ "key": "alt+b","command": "workbench.action.toggleSidebarVisibility" },//-------------------------------------------------//行操作//-------------------------------------------------//本行下插入空白行{"key": "ctrl+enter","command": "editor.action.insertLineAfter","when": "editorTextFocus && !editorReadonly"},//本行上插入空白行{"key": "ctrl+shift+enter","command": "editor.action.insertLineBefore","when": "editorTextFocus && !editorReadonly"},//移动行{ "key": "alt+down","command": "editor.action.moveLinesDownAction","when": "editorTextFocus && !editorReadonly" },{ "key": "alt+up","command": "editor.action.moveLinesUpAction", "when": "editorTextFocus && !editorReadonly" },//复制行{ "key": "shift+alt+down","command": "editor.action.copyLinesDownAction","when": "editorTextFocus && !editorReadonly" },{ "key": "shift+alt+up","command": "editor.action.copyLinesUpAction","when": "editorTextFocus && !editorReadonly" },//合并行{ "key": "ctrl+j","command": "editor.action.joinLines", "when": "editorTextFocus && !editorReadonly" },//删除行{ "key": "ctrl+d","command": "editor.action.deleteLines", "when": "textInputFocus && !editorReadonly" },//是否折叠行{ "key": "alt+z","command": "editor.action.toggleWordWrap" },//-------------------------------------------------//删除词//-------------------------------------------------{ "key": "ctrl+backspace","command": "deleteWordLeft","when": "textInputFocus && !editorReadonly" },{ "key": "ctrl+delete","command": "deleteWordRight","when": "textInputFocus && !editorReadonly" },//-------------------------------------------------//书签//-------------------------------------------------{"key": "ctrl+alt+k","command": "bookmarks.toggle","when": "editorTextFocus"},{"key": "ctrl+alt+l","command": "bookmarks.jumpToNext","when": "editorTextFocus"},{"key": "ctrl+alt+j","command": "bookmarks.jumpToPrevious","when": "editorTextFocus"},{"key": "ctrl+alt+o","command": "bookmarks.clear"},{"key": "ctrl+shift+alt+o","command": "bookmarks.clearFromAllFiles"},{"key": "ctrl+alt+i","command": "bookmarks.list"},{"key": "ctrl+shift+alt+i","command": "bookmarks.listFromAllFiles"},//-------------------------------------------------//文件操作//-------------------------------------------------//复制当前文件路径{ "key": "ctrl+k ctrl+p","command": "workbench.action.files.copyPathOfActiveFile" },//创建新文件{ "key": "ctrl+n","command": "workbench.action.files.newUntitledFile" },//打开文件{"key": "ctrl+p","command": "workbench.action.quickOpen"},{"key": "ctrl+p","command": "workbench.action.quickOpenNavigateNextInFilePicker","when": "inFilesPicker && inQuickOpen"},//打开文件所在位置{ "key": "ctrl+k ctrl+r","command": "workbench.action.files.revealActiveFileInWindows" },//保存文件{ "key": "ctrl+s","command": "workbench.action.files.save" },{ "key": "alt+ctrl+s","command": "workbench.action.files.saveAll" },{ "key": "shift+ctrl+s","command": "workbench.action.files.saveAs" },//在新窗口打开当前文件{ "key": "ctrl+k ctrl+o","command": "workbench.action.files.showOpenedFileInNewWindow" },//-------------------------------------------------//注释//-------------------------------------------------{"key": "ctrl+k ctrl+b","command": "editor.action.blockComment","when": "editorTextFocus && !editorReadonly"},{"key": "ctrl+k ctrl+l","command": "editor.action.commentLine","when": "editorTextFocus && !editorReadonly"},//-------------------------------------------------//基本//-------------------------------------------------{ "key": "ctrl+c","command": "editor.action.clipboardCopyAction","when": "textInputFocus"},{ "key": "ctrl+v","command": "editor.action.clipboardPasteAction","when": "textInputFocus && !editorReadonly"},{ "key": "ctrl+x","command": "editor.action.clipboardCutAction","when": "textInputFocus && !editorReadonly"},{ "key": "ctrl+a","command": "editor.action.selectAll"},{ "key": "ctrl+y","command": "redo","when": "textInputFocus && !editorReadonly"},{ "key": "ctrl+z","command": "undo","when": "textInputFocus && !editorReadonly"},//-------------------------------------------------//选择//-------------------------------------------------//括号选择{ "key": "ctrl+shift+alt+right","command": "editor.action.selectToBracket","when": "textInputFocus" },//匹配选择{"key": "ctrl+shift+m","command": "editor.action.addSelectionToNextFindMatch","when": "editorFocus"},//字选择{ "key": "shift+down","command": "list.expandSelectionDown","when": "listFocus && !inputFocus" },{ "key": "shift+up","command": "list.expandSelectionUp","when": "listFocus && !inputFocus" },{ "key": "shift+left","command": "cursorLeftSelect","when": "textInputFocus" },{ "key": "shift+right","command": "cursorRightSelect","when": "textInputFocus" },//行选择{ "key": "ctrl+i","command": "expandLineSelection","when": "textInputFocus"},//行选择{ "key": "shift+home","command": "cursorHomeSelect","when": "textInputFocus" },{ "key": "shift+end","command": "cursorEndSelect","when": "textInputFocus" },//词选择{ "key": "alt+shift+right","command": "cursorWordEndRightSelect","when": "textInputFocus" },{ "key": "alt+shift+left","command": "cursorWordStartLeftSelect","when": "textInputFocus" },//页选择{ "key": "shift+pagedown","command": "cursorPageDownSelect","when": "textInputFocus" },{ "key": "shift+pageup","command": "cursorPageUpSelect","when": "textInputFocus" },//-------------------------------------------------//cursor//-------------------------------------------------//字//{ "key": "up",                    "command": "cursorUp","when": "textInputFocus" },//{ "key": "down",                  "command": "cursorDown","when": "textInputFocus" },//{ "key": "left",                  "command": "cursorLeft","when": "textInputFocus" },//{ "key": "right",                 "command": "cursorRight","when": "textInputFocus" },//词{ "key": "alt+left","command": "cursorWordStartLeft","when": "textInputFocus" },{ "key": "alt+right","command": "cursorWordEndRight", "when": "textInputFocus" },//行{ "key": "home","command": "cursorHome","when": "textInputFocus" },{ "key": "end","command": "cursorEnd","when": "textInputFocus" },//页{ "key": "pagedown","command": "cursorPageDown","when": "textInputFocus" },{ "key": "pageup","command": "cursorPageUp","when": "textInputFocus" },//文件{ "key": "ctrl+home","command": "cursorTop","when": "textInputFocus" },{ "key": "ctrl+end","command": "cursorBottom","when": "textInputFocus" },{ "key": "ctrl+u","command": "cursorUndo","when": "textInputFocus" },{ "key": "alt+pagedown",         "command": "scrollLineDown","when": "textInputFocus" },{ "key": "alt+pageup",           "command": "scrollLineUp","when": "textInputFocus" },//-------------------------------------------------//列编辑//-------------------------------------------------//alt +鼠标左键单击//按住鼠标中键拖拽{ "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+u","command": "editor.unfold","when": "editorTextFocus" },{ "key": "ctrl+alt+shift+u","command": "editor.unfoldAll","when": "editorTextFocus" },{ "key": "ctrl+alt+f","command": "editor.fold","when": "editorTextFocus" },{ "key": "ctrl+alt+shift+f","command": "editor.foldAll", "when": "editorTextFocus" },//-------------------------------------------------//缩进//-------------------------------------------------{ "key": "shift+tab","command": "outdent","when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus" },{ "key": "tab","command": "tab","when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus" },//-------------------------------------------------//terminal//-------------------------------------------------{ "key": "ctrl+c","command": "workbench.action.terminal.copySelection","when": "terminalFocus && terminalTextSelected" },{ "key": "ctrl+v","command": "workbench.action.terminal.paste","when": "terminalFocus" },{ "key": "ctrl+a","command": "workbench.action.terminal.selectAll","when": "terminalFocus" },{ "key": "ctrl+k","command": "workbench.action.terminal.clear","when": "terminalFocus" },{ "key": "ctrl+shift+\\","command": "workbench.action.terminal.split","when": "terminalFocus" },{ "key": "end", "command": "workbench.action.terminal.moveToLineEnd","when": "terminalFocus" },{ "key": "home","command": "workbench.action.terminal.moveToLineStart","when": "terminalFocus" },//alt + left or right move by word{ "key": "ctrl+f","command": "workbench.action.terminal.focusFindWidget","when": "terminalFocus" },{ "key": "ctrl+=","command": "workbench.action.terminal.findNext","when": "terminalFindWidgetFocused" },{ "key": "ctrl+-","command": "workbench.action.terminal.findPrevious","when": "terminalFindWidgetFocused" },{ "key": "alt+backspace","command": "workbench.action.terminal.deleteWordLeft","when": "terminalFocus" },{ "key": "alt+delete","command": "workbench.action.terminal.deleteWordRight","when": "terminalFocus" },{ "key": "ctrl+1","command": "workbench.action.terminal.focusAtIndex1","when": "terminalFocus" },{ "key": "ctrl+2","command": "workbench.action.terminal.focusAtIndex2","when": "terminalFocus" },{ "key": "ctrl+3","command": "workbench.action.terminal.focusAtIndex3","when": "terminalFocus" },{ "key": "ctrl+4","command": "workbench.action.terminal.focusAtIndex4","when": "terminalFocus" },//-------------------------------------------------//其它//-------------------------------------------------{"key": "alt+g","command": "workbench.action.tasks.runTask","args": "/Applications/Graphviz.app/Contents/MacOS/Graphviz"},]

转载于:https://www.cnblogs.com/Searchor/p/9063192.html

vs code 快捷键设置 2018相关推荐

  1. VS Code python设置及jupyter快捷键设置

    VS Code python设置及jupyter快捷键设置 概述 python编译环境设置 设置jupyter快捷键 概述 之前一直使用pycharm作为python的IDE,但由于本人不是重度的py ...

  2. vs2019快捷键设置

    vs2019快捷键没有沿用vs2017的风格 注释代码和取消注释比较麻烦,换成ctrl +/: ctrl+单机是看源码,这个不用换. vs2019的自定义快捷键(设置注释选定的块和取消注释快捷键 设置 ...

  3. Typora 快捷键设置

    Typora 快捷键设置 1.为啥要改快捷键? 行内代码的快捷键:Ctrl + Shift + `,这个姿势有多凹造型,大家试试就知道,反正我是用吐了 2.如何修改快捷键 打开[文件]–>[偏好 ...

  4. Eclipse的快捷键设置及使用

    Eclipse快捷键的设置和使用 java程序开发,经常会用Eclipse或者MyEclise集成开发环境,一些实用的Eclipse快捷键和使用技巧, 可以在平常开发中节约出很多时间提高工作效率,下面 ...

  5. android studio怎么设置,android studio快捷键如何设置 android studio快捷键设置方法

    Android studio的快捷键是一个很方便的存在,在编程的时候,我们都更习惯使用键盘,快捷键的操作可以提高编程效率,那么android studio快捷键如何设置呢,下面来看看设置方法. 快捷键 ...

  6. Vs code快捷键及常用插件

    前言 本文的最新内容,更新于 2020-06-19.大家完全不用担心这篇文章会过时,因为随着 VS Code 的版本更新和插件更新,本文也会随之更新. 本文的最新内容,也会在GitHub上同步更新,欢 ...

  7. Goland快捷键设置记录

    为了保持个人使用习惯的一致性,这里记录日常开发软件的快捷键设置,保证更换电脑或者开发环境时的用法一致性,提高效率 取消双击shift产生全局搜索 先双击shift弹出全局搜索(emmm,有点尴尬,最后 ...

  8. 将IDEA快捷键设置成eclipse(IDEA新手必会)

    现在将一些快捷键设置分享在这 1.打开idea,点击上方菜单栏中的File, 2.在弹出的setting页面中左侧导航中选择Keymap:在keymaps下拉列表中选择Eclipse:如果想要使用这个 ...

  9. 将IDEA快捷键设置成eclipse

    现在将一些快捷键设置分享在这 1.打开idea,点击上方菜单栏中的File, 2.在弹出的setting页面中左侧导航中选择Keymap:在keymaps下拉列表中选择Eclipse:如果想要使用这个 ...

最新文章

  1. 2019年上半年收集到的国外人工智能发展详情文章
  2. C linux 宏定义的使用
  3. 用VS Code打造最佳Markdown编辑器
  4. C#操作Access数据库 增删改查
  5. mysql 懒加载数据_jpa如何懒加载大字段,懒加载之后又如何获取懒加载字段
  6. python错误代码提示手册_腾讯大佬整理了 Python 所有内置异常,Python高手必备的排错手册...
  7. 魔幻的2020年,请程序员们收下这份秋招建议!
  8. Python 告诉你:8.3 分口碑炸裂!潘粤明版《鬼吹灯》到底好看在哪儿?
  9. mysql 、慢查询、到底如何玩
  10. 慕课网仿去哪儿项目笔记--(四)-城市页面的优化
  11. signingConfigs
  12. 计算机如何获取知识和技能 实现自我完善,在人工智能中有一个研究领域,主要研究计算机如何获取知识和技能,实现自我完善,这门分支学科叫做。...
  13. Eth-Trunk负载分担不均怎么办,如何通过Hash算法实现负载分担?
  14. 泛微文书定确保电子档案移交接收过程:真实、完整、可用和安全
  15. Selenium 2.0的由来及设计架构
  16. python批量修改文件名称及文件属性
  17. 利用python requests库模拟登陆知乎
  18. 浅谈对Python的理解和优缺点
  19. 软件测试定义/过程/分类
  20. 基于可视化的智慧水务解决方案

热门文章

  1. 做红颜知己就要恪守界限
  2. Android Camera2 拍照(四)——对焦模式
  3. openresty 前端开发入门四之Redis篇
  4. linux查看端口号是否被占用
  5. PostgreSQL在何处处理 sql查询之六
  6. 转载:SVN插件的手动安装
  7. sql server 修改IDENTITY 字段 的统计当前值
  8. ORACLE性能优化救生指南_21章 重做和归档的优化
  9. AndroidStudio Refreshing Gradle Project编译更新Gradle卡住问题
  10. 作用域链(scope chain)和原型链(prototype chain)