zoukankan      html  css  js  c++  java
  • vscode setting collection/vscode设置搜集

    "settings.json"
    {
        /*
         * Proxy
         */    
         "http.proxySupport": "off",
         "http.proxy": "http://<ip>:<port>",
     
        /*
        * Common
        */
        "C_Cpp.updateChannel": "Insiders",
        "diffEditor.ignoreTrimWhitespace": false,
        "files.autoGuessEncoding": true,
     
        /*
        * Code Runner - run code with vscode directly
        */
        "code-runner.runInTerminal": true,  //prevent garbled code (like ��� ) in debug console
     
        /*
         * Doxygen File
         */
         "doxdocgen.file.fileTemplate": "@file     {name}",
         "doxdocgen.generic.briefTemplate": "@brief    {text}",
         "doxdocgen.generic.authorName": "Song Peng/Tim",
         "doxdocgen.generic.authorEmail": "",
         "doxdocgen.generic.authorTag": "@author   {author}",
         "doxdocgen.file.customTag":  [
             "@remarks  "
         ],
     
         "doxdocgen.file.fileOrder": [
             "file",
             "empty",
             "brief",
             "empty",
             "author",
             "empty",
             "custom",
         ],
     
         /*
          * Doxygen Function
          */
         // Smart text snippet for constructors.
         "doxdocgen.cpp.ctorText": "Construct a new {name} object",
         // Smart text snippet for destructors.
         "doxdocgen.cpp.dtorText": "Destroy the {name} object",
         // The template of the template parameter Doxygen line(s) that are generated. If empty it won't get generated at all.
         "doxdocgen.cpp.tparamTemplate": "@tparam    {param} ",
         // The template of the param Doxygen line(s) that are generated. If empty it won't get generated at all.
         "doxdocgen.generic.paramTemplate": "@param    {param} ",
         // The template of the return Doxygen line that is generated. If empty it won't get generated at all.
         "doxdocgen.generic.returnTemplate": "@return   {type}",
         "doxdocgen.generic.customTags": [ "@remarks " ],
         // Order
         "doxdocgen.generic.order": [
             "brief",
             "empty",
             "tparam",
             "param",
             "empty",
             "return",
             "custom"
        ],
        "cmake.configureOnOpen": false,
        "workbench.editor.enablePreview": false,
       
    }
  • 相关阅读:
    设计模式整理_单例设计模式
    设计模式整理_工厂模式
    设计模式整理_装饰者模式
    设计模式整理_观察者模式
    设计模式整理_策略模式
    JavaSE复习_7 异常
    JavaSE复习_6 枚举类
    JavaSE复习_5 Eclipse的常见操作
    pta编程题19 Saving James Bond 2
    ImportError: No module named PIL
  • 原文地址:https://www.cnblogs.com/hkingsp/p/15547763.html
Copyright © 2011-2022 走看看