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"
    }
    ]
  • 相关阅读:
    性能测试用例设计
    jmeter压测
    jmeter
    fiddle--APP弱网测试
    性能测试流程
    性能测试--响应时间
    性能测试--吞吐量
    性能测试--最佳/最大用户数,举个栗子
    性能测试--并发用户
    QT中QMainWindow、QWidget、QDialog
  • 原文地址:https://www.cnblogs.com/cfsxgogogo/p/8806203.html
Copyright © 2011-2022 走看看