• 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,
       
    }
  • 相关阅读:
    setoptsocket函数
    C++右值引用
    const char* char const* char*const
    select()函数以及FD_ZERO、FD_SET、FD_CLR、FD_ISSET
    gitee搭建应用
    C++ 实现基本运算+-*/
    C++学习笔记(一)mutable function
    创造型设计模式-----抽象工厂模式
    openPhase gcc迁移
    SQLPLUS 远程连接数据库
  • 原文地址:https://www.cnblogs.com/hkingsp/p/15547763.html
Copyright © 2020-2023  润新知