GoTags
GoTags is a Sublime Text plugin to append or remove tags for Golang struct.
Details
Installs
- Total 8K
- Win 6K
- Mac 1K
- Linux 524
| Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 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 |
| Mac | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 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 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
GoTags
GoTags is a Sublime Text plugin to append or remove tags for Golang struct.
Functionality includes:
- Append JSON tag with snake cased field name or remove JSON tag
- Append XML tag with snake cased field name or remove XML tag
- Append Xorm tag with xorm field type or remove Xorm tag
Usage
By default via the keyboard shortcut: Super + Shift + G, Super + Shift + T
on OSX or Ctrl + Shift + G, Ctrl + Shift + T on other platforms(or change it
in ${packages}/User/Default (plantform).sublime-keymap). Then choice the action
you want.
** Makesure lines type STRUCT_NAME struct{ are in select region. **
For example:
type Example struct {
FieldOne int `` // int field
FieldTwo string `orig tag` // string field
FieldThree time.Time // time field
}
Then select type Example struct { line (or this is current line) and type the
shortcut, select action 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
}
After save with 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
}
Idea from:
gotag: golang auto generate struct tag.