ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

GoTags

howcrazy 全部

GoTags 是一个 Sublime Text 插件,用于为 Golang 结构体添加或移除标记。

详细信息

  • 0.2.1
  • github.com
  • github.com
  • 8 年前
  • 54 分钟前
  • 8 年前

安装

  • 总计 8K
  • Win 6K
  • Mac 1K
  • Linux 512
8月6日 8月5日 8月4日 8月3日 8月2日 8月1日 7月31日 7月30日 7月29日 7月28日 7月27日 7月26日 7月25日 7月24日 7月23日 7月22日 7月21日 7月20日 7月19日 7月18日 7月17日 7月16日 7月15日 7月14日 7月13日 7月12日 7月11日 7月10日 7月9日 7月8日 7月7日 7月6日 7月5日 7月4日 7月3日 7月2日 7月1日 6月30日 6月29日 6月28日 6月27日 6月26日 6月25日 6月24日 6月23日
Windows 0 0 0 0 0 0 0 0 0 0 0 2 1 0 1 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Mac 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0

读我

源代码
raw.githubusercontent.com

GoTags

GoTags 是一个 Sublime Text 插件,用于为 Golang 结构体添加或移除标记。

功能包括

  • 为蛇形字段名添加 JSON 标记或移除 JSON 标签
  • 为蛇形字段名添加 XML 标记或移除 XML 标签
  • 为 Xorm 字段类型添加 Xorm 标记或移除 Xorm 标签

用法

默认通过键盘快捷键:在 OS X 上为 Super + Shift + G,在其他平台上为 Ctrl + Shift + GCtrl + Shift + T(或在 ${packages}/User/Default (platform).sublime-keymap 中进行更改)。然后选择所需的操作。

** 确保选中区域包含 type STRUCT_NAME struct{ 行。 **

例如

type Example struct {
    FieldOne int       ``         // int field
    FieldTwo string    `orig tag` // string field
    FieldThree time.Time // time field
}

然后选中 type Example struct { 行(或这是当前行)并输入快捷键,选择操作 JSON: Append tags

type Example struct {
    FieldOne    int    `json:"field_one"`         // int field
    FieldTwo    string    `orig tag json:"field_two"` // string field
    FieldThree    time.Time    `json:"field_three"` // time field
}

然后使用 gofmt 保存

type Example struct {
    FieldOne   int       `json:"field_one"`          // int field
    FieldTwo   string    `orig tag json:"field_two"` // string field
    FieldThree time.Time `json:"field_three"`        // time field
}

灵感来源于

gotag: Golang 自动生成结构体标记。