博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
VSCode shortcuts configuration file
阅读量:6134 次
发布时间:2019-06-21

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

// Place your key bindings in this file to overwrite the defaults[    {        "key": "ctrl+d",        "command": "editor.action.goToDeclaration",        "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"    },    {        "key": "f12",        "command": "-editor.action.goToDeclaration",        "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"    },    {        "key": "ctrl+e",        "command": "editor.action.openDeclarationToTheSide",        "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"    },    {        "key": "ctrl+k f12",        "command": "-editor.action.openDeclarationToTheSide",        "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"    },    {        "key": "ctrl+o",        "command": "lastCursorLineSelect"    },    {        "key": "ctrl+pagedown",        "command": "workbench.action.terminal.focusNext",        "when": "!editorTextFocus"    },    {        "key": "ctrl+pageup",        "command": "workbench.action.terminal.focusPrevious",        "when": "!editorTextFocus"    },    {        "key": "ctrl+down",        "command": "workbench.action.terminal.focus"    },    {        "key": "ctrl+left",        "command": "cursorWordLeft"    },    {        "key": "ctrl+right",        "command": "cursorWordRight"    },    {        "key": "ctrl+]",        "command": "-editor.action.indentLines",        "when": "editorTextFocus && !editorReadonly"    },    {        "key": "ctrl+,",        "command": "workbench.action.terminal.focusFindWidget",        "when": "terminalFocus"    },    {        "key": "ctrl+f",        "command": "-workbench.action.terminal.focusFindWidget",        "when": "terminalFocus"    },    {        "key": "ctrl+[",        "command": "-editor.action.outdentLines",        "when": "editorTextFocus && !editorReadonly"    },    {        "key": "ctrl+,",        "command": "-workbench.action.openGlobalSettings"    },    {        "key": "ctrl+.",        "command": "-editor.action.quickFix",        "when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly"    },    {        "key": "ctrl+shift+t",        "command": "workbench.action.terminal.new"    },    {        "key": "ctrl+shift+`",        "command": "-workbench.action.terminal.new"    },    {        "key": "ctrl+shift+t",        "command": "-workbench.action.reopenClosedEditor"    },    {        "key": "tab",        "command": "-jumpToNextSnippetPlaceholder",        "when": "editorTextFocus && hasNextTabstop && inSnippetMode"    },    {        "key": "tab",        "command": "-editor.emmet.action.expandAbbreviation",        "when": "config.emmet.triggerExpansionOnTab && editorTextFocus && !editorReadonly && !editorTabMovesFocus"    },    {        "key": "tab",        "command": "-acceptSelectedSuggestion",        "when": "editorTextFocus && suggestWidgetVisible"    },    {        "key": "tab",        "command": "-insertSnippet",        "when": "editorTextFocus && hasSnippetCompletions && !editorTabMovesFocus && !inSnippetMode"    },    {        "key": "ctrl+alt+-",        "command": "-workbench.action.navigateBack"    },    {        "key": "ctrl+shift+-",        "command": "-workbench.action.navigateForward"    },    {        "key": "ctrl+i",        "command": "workbench.action.navigateForward"    },    {        "key": "shift+alt+-",        "command": "-workbench.action.navigateForward"    },    {        "key": "ctrl+o",        "command": "workbench.action.navigateBack"    },    {        "key": "alt+-",        "command": "-workbench.action.navigateBack"    }]复制代码

转载地址:http://mteua.baihongyu.com/

你可能感兴趣的文章
视频 - 在 VirtualBox 中部署 OpenStack
查看>>
2013-7-10学习笔记[字符串操作,指向函数的指针]
查看>>
企业如何用InfBox架设自己的内部即时信息IM服务器
查看>>
Tomcat结合memcached实现sessio共享
查看>>
Windows Phone 7 水平滚动的文本
查看>>
Codis 是一个分布式 Redis 解决方案
查看>>
Java实现Http的Post、Get、代理访问请求
查看>>
Java中Vector和ArrayList的区别
查看>>
[LeetCode] Validate IP Address 验证IP地址
查看>>
理解 Neutorn LBaaS - 每天5分钟玩转 OpenStack(120)
查看>>
如何实现大图居中超过的部分两边自动隐藏
查看>>
Unshelve Instance 操作详解 - 每天5分钟玩转 OpenStack(39)
查看>>
Redis的安装与使用(单节点)
查看>>
CIO该如何掌控“数字化冰山”
查看>>
NXP为Hexiwear提供即插即用的NFC解决方案
查看>>
台积电宣布5nm工艺2020年量产:苹果A14/A14X订单有戏
查看>>
为企业实力代言!新华三获OpenStackCompatible标识
查看>>
编码准则与Java编译器
查看>>
三星扩充10nm/7nm产能 这次花了8.5万亿
查看>>
Taurus.MVC 2.2 开源发布:WebAPI 功能增强(请求跨域及Json转换)
查看>>