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"
    }
    ]
  • 相关阅读:
    jdk .tar.gz 包安装 inAction
    Consistent Hashing原理与实现
    开放GitHub的理由
    dll signing issue
    Regular expression cheat sheet
    DOMElement之Offset
    扫码支付测试点
    SQL注入是什么?如何防止?
    什么是接口测试?为什么要做接口测试?如何开展接口测试?
    软件测试的常识
  • 原文地址:https://www.cnblogs.com/cfsxgogogo/p/8806203.html
Copyright © 2011-2022 走看看