• Go文件右键编译


    辛辛苦苦写好了.go文件 发现编译还得敲命令才行,或许配置一个好用点的IDE环境可以解决

    但是有时候实在不想开IDE 于是在右键添加了一个编译功能

    首先保证go相关的环境变量配置正确

    1 Windows Registry Editor Version 5.00
    2 
    3 [HKEY_CLASSES_ROOT*shellBuild With Gocommand]
    4 @="cmd.exe /k "go build %1 && echo ok""

    然后保存代码到reg文件 然后执行 合并到注册表

    这样所有文件的右键将会多出一个 go build 菜单命令

    单独给go文件增加的菜单

    Windows Registry Editor Version 5.00
    
    [HKEY_CLASSES_ROOTgo_auto_fileshellBuild With Go ]
    
    [HKEY_CLASSES_ROOTgo_auto_fileshellBuild With Go command]
    @="cmd.exe /k "go build %1 && echo ok""
    
    [HKEY_CLASSES_ROOTgo_auto_fileshellBuild With Go ddeexec]
  • 相关阅读:
    memento模式
    observe模式
    state模式
    Trie树的简单介绍和应用
    strategy模式
    全组和问题
    SRM 551 DIV2
    全排列问题
    TSE中关于分词的算法的改写最少切分
    template模式
  • 原文地址:https://www.cnblogs.com/toumingbai/p/6412950.html
Copyright © 2020-2023  润新知