编程笔记

lifelong learning & practice makes perfect

vscode config

插件

推荐插件

  1. koroFileHeader

    • 功能: 自动在文件头或函数头增加注释

    • url: https://marketplace.visualstudio.com/items?itemName=OBKoro1.korofileheader

    • 函数

      1
      2
      3
      4
      5
      /**
      * @description:
      * @param {*}
      * @return {*}
      */
    • 文件

      1
      2
      3
      4
      5
      6
      7
      8
      <!--
      * @Author: your name
      * @Date: 2021-06-25 10:10:19
      * @LastEditTime: 2021-10-29 14:24:21
      * @LastEditors: your name
      * @Description: In User Settings Edit
      * @FilePath: /vscode-config.md
      -->

code runner

  1. golang同package下的代码undefined
1
2
3
4
在.vscode下的settigns.json增加配置
"code-runner.executorMap": {
"go": "cd $dir && go run .",
},

go path

  1. vscode同时开发多个项目,每个项目不同路径
    在不同终端下,配置不同gopath,使用 eexport GOPATH=/home/xxx/xxx设置

欢迎关注我的其它发布渠道