zoukankan      html  css  js  c++  java
  • vs code 个人编辑习惯(慢慢积累)

     "explorer.autoReveal": false,
    "workbench.list.openMode": "doubleClick",
    "workbench.startupEditor": "newUntitledFile",
    "terminal.integrated.rendererType": "auto",
    "files.autoSave": "off",
    "typescript.updateImportsOnFileMove.enabled": "always",
    "breadcrumbs.enabled": true,
    "editor.formatOnSave": true,
    "files.insertFinalNewline": true,
    "search.showLineNumbers": true,
    "typescript.preferences.quoteStyle": "single"
     
     
    // 将键绑定放入此文件中以覆盖默认值
    [
    {
    "key": "alt+r",
    "command": "workbench.files.action.showActiveFileInExplorer"
    },
    {
    "key": "ctrl+shift+/",
    "command": "editor.action.blockComment",
    "when": "editorTextFocus && !editorReadonly"
    },
    {
    "key": "shift+alt+a",
    "command": "-editor.action.blockComment",
    "when": "editorTextFocus && !editorReadonly"
    },
    {
    "key": "ctrl+shift+l",
    "command": "editor.action.joinLines"
    },
    {
    "key": "ctrl+shift+x",
    "command": "editor.action.transformToUppercase"
    },
    {
    "key": "ctrl+shift+y",
    "command": "editor.action.transformToLowercase"
    },
    {
    "key": "ctrl+shift+s",
    "command": "workbench.action.files.saveAll"
    },
    {
    "key": "ctrl+k s",
    "command": "-workbench.action.files.saveAll"
    },
    {
    "key": "ctrl+alt+o",
    "command": "outline.focus"
    },
    {
    "key": "f5",
    "command": "-workbench.action.debug.start",
    "when": "!inDebugMode"
    }
    ]
  • 相关阅读:
    区块链分布式云存储项目盘点
    区块链一定要知道的的七大认识误区
    以太坊“空块”数量激增有什么影响?
    区块链技术涉及哪些编程语言?
    一文读懂实用拜占庭容错(PBFT)算法
    清除浮动的影响
    滚动条
    分享侧栏例子
    最最最简单的轮播图(JQuery)
    3D动画
  • 原文地址:https://www.cnblogs.com/cfsxgogogo/p/8806203.html
Copyright © 2011-2022 走看看