zoukankan      html  css  js  c++  java
  • Visual Studio Code-GO tasks 设置 (实现在vsc下直接编译输出的功能)

    Visual Studio Code -GO 使用过程中发现,如果要编译输出某个文件需要去cmd窗口才行,感觉特别麻烦网上一直没找到解决办法,这几天查看Visual Studio Code文档发现它提供 tasks 功能可以实现

    需要了解Visual Studio Code所有功能配置是通过json文件配置的

    tasks 工作原理是Visual Studio Code 自动执行你之前配置好的功能。

    配置方法

    第一次使用 打开vsc界面按 快捷键 Ctrl+Shift+B 会弹出 
     

    点击配置任务运行程序 
      
    点击Others 
      
    出现这个就是我们的配置文件,我们只要把我们的go语言的编译命令配上就行了 
    我的配置文件 tasks.json 更详细配置:http://code.visualstudio.com/docs/editor/tasks 

    {
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
    {
    "label": "rungo",
    "type": "shell",
    "command": "go",
    "args": [
    "run",
    "${file}"
    ],
    //"showOutput":"always",
    "presentation":{
    "echo": true,
    "reveal": "always",
    "focus": false,
    "panel": "shared"
    },
    "group": {
    "kind": "build",
    "isDefault": true
    },
    "problemMatcher": []
    }
    ]
    }

     

    配置好后 Ctrl+Shift+B 就可以自动编译输出 测试: 

     

     

  • 相关阅读:
    io流
    JDBC-java数据库连接
    list接口、set接口、map接口、异常
    集合、迭代器、增强for
    math类和biginteger类
    基本包装类和System类
    正则表达式
    API-Object-equals方法和toString方法 Strinig字符串和StingBuffer类
    匿名对象 内部类 包 访问修饰符 代码块
    final 和 static 关键词
  • 原文地址:https://www.cnblogs.com/it-tsz/p/9021796.html
Copyright © 2011-2022 走看看