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"
    }
    ]
  • 相关阅读:
    docker 的使用
    WEB应用支持RESTFUL风格方法
    tomcat7 安装 windows 服务
    获取POM.XML依赖的JAR包
    集成 dubbo 微服务
    linux 修改yum 为阿里云源
    poj3904
    2013 ACM/ICPC 长春网络赛E题
    2013 ACM/ICPC 长春网络赛F题
    2013 ACM/ICPC 长沙网络赛J题
  • 原文地址:https://www.cnblogs.com/cfsxgogogo/p/8806203.html
Copyright © 2011-2022 走看看