formattag icon indicating copy to clipboard operation
formattag copied to clipboard

Align Golang struct tags

Results 5 formattag issues
Sort by recently updated
recently updated
newest added

Add custom watcher to goland according to README file: ![image](https://github.com/momaek/formattag/assets/81983258/8e1927b8-03bf-4364-b5ba-00645af20908) But after save file execution is freezes and not complete: ![image](https://github.com/momaek/formattag/assets/81983258/49692372-a0ca-4511-a644-3627eb6ea7e8) process in table: ![image](https://github.com/momaek/formattag/assets/81983258/c03d9a89-e8c8-4dd1-a3dd-94cc7cdf7654) From command line works fine...

Version v0.0.8 worked fine but the v0.0.9 just hangs. Here's the config ![image](https://github.com/momaek/formattag/assets/16167390/a631218f-dacb-43ba-9311-6f48d784c922) Running formattag as an external tool, it hangs like this: ![image](https://github.com/momaek/formattag/assets/16167390/50bea4f1-3edf-40ad-acda-824103ca30a4) Whereas if I run the very...

example from formatted file ```go package main func main() { } // this line ```

Formattag is deleting commas out from struct tags. Tried it with a few different punctuation marks and it only seems to delete lone commas. Before formattag: ```go type options struct...

bug

in CJK, a char occupies two chars width. So I want it formatted like this: Before ```golang type Test struct { NormalChars string `json:"normalChars" t:"abc" othertag:"123"` CjkChars string `json:"cjkChars" t:"中の한"...

bug