{"id":25732450,"url":"https://github.com/vigo/textmate2-gomodifytags","last_synced_at":"2026-05-14T11:40:22.869Z","repository":{"id":190138169,"uuid":"682056823","full_name":"vigo/textmate2-gomodifytags","owner":"vigo","description":"TextMate2 implementation of Fatih’s gomodifytags","archived":false,"fork":false,"pushed_at":"2023-10-15T20:51:24.000Z","size":12390,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-05-01T19:38:03.533Z","etag":null,"topics":["golang","gomodifytags","textmate-bundle"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vigo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null}},"created_at":"2023-08-23T10:47:28.000Z","updated_at":"2024-05-01T19:38:03.534Z","dependencies_parsed_at":null,"dependency_job_id":"18c7655e-a9d3-431a-a518-5a14115372da","html_url":"https://github.com/vigo/textmate2-gomodifytags","commit_stats":null,"previous_names":["vigo/textmate2-gomodifytags"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vigo%2Ftextmate2-gomodifytags","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vigo%2Ftextmate2-gomodifytags/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vigo%2Ftextmate2-gomodifytags/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vigo%2Ftextmate2-gomodifytags/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vigo","download_url":"https://codeload.github.com/vigo/textmate2-gomodifytags/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240788734,"owners_count":19857691,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["golang","gomodifytags","textmate-bundle"],"created_at":"2025-02-26T03:41:08.728Z","updated_at":"2026-05-14T11:40:22.858Z","avatar_url":"https://github.com/vigo.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Version](https://img.shields.io/badge/version-0.1.3-orange.svg?style=for-the-badge)\n![Plaftorm](https://img.shields.io/badge/platform-TextMate-blue.svg?style=for-the-badge)\n![macOS](https://img.shields.io/badge/macos-Ventura-yellow.svg?style=for-the-badge)\n![Powered by Rake](https://img.shields.io/badge/powered_by-rake-blue?logo=ruby\u0026style=for-the-badge)\n\n# Go Modify Tags for TextMate2\n\nThis is the TextMate2 implementation of Fatih’s [gomodifytags][01].\n\n![TextMate2 Go Modify Tags Demo](screens/tm2-gomodifytags.gif)\n\n---\n\n## Requirements\n\nYou need to install;\n\n```bash\ngo install github.com/fatih/gomodifytags@latest\n```\n\nThen check your TextMate2 settings / variables option. If your `GOPATH` not\nset, find your `GOPATH` and add there;\n\n```bash\ngo env GOPATH  # grab the value; e.g: /Users/vigo/.local/go\n```\n\nYour path variable should look like this:\n\n    [x] PATH \u003cGRABBED-VALUE\u003e:\u003cREST-OF-THE-VALUES\u003e\n             # e.g:\n             /Users/vigo/.local/go/bin:/opt/homebrew/bin:/opt/homebrew/opt/go/bin:${PATH} \n\n---\n\n## Install and Update\n\n```bash\ncd ~/Library/Application\\ Support/TextMate/Bundles/\ngit clone https://github.com/vigo/textmate2-gomodifytags.git GoModifyTags.tmbundle\n\n# update\ncd ~/Library/Application\\ Support/TextMate/Bundles/GoModifyTags.tmbundle\ngit pull origin main\n```\n\n---\n\n## Change Log\n\n**2023-10-15**\n\n- Fix unsaved file control (*won’t work if the file is not saved*)\n- Fix selection control (*won’t work if nothing is selected*)\n- Fix command existence check (*won’t work if the gomodifytags is not added to TM PATH*)\n\n---\n\n## Editor Features\n\nAll of the commands work with \u003ckbd\u003e⌥\u003c/kbd\u003e + \u003ckbd\u003e⌘\u003c/kbd\u003e + \u003ckbd\u003eT\u003c/kbd\u003e\n(option+cmd+T) while you are in go scope:\n\n![TextMate2 Go Modify Tags Options](screens/tm2-options.png)\n\nThis operation doesn’t save the current file on purpose! You need to save your\ncurrent file after change!\n\n---\n\n## Contribute\n\nPR’s are very welcome!\n\n1. `fork` (https://github.com/vigo/textmate2-gomodifytags/fork)\n2. Create your `branch` (`git checkout -b my-feature`)\n3. `commit` yours (`git commit -am 'added feature'`)\n4. `push` your `branch` (`git push origin my-feature`)\n5. Than create a new **Pull Request**!\n\n---\n\n## Contributor(s)\n\n- [Uğur \"vigo\" Özyılmazel][vigo] - Creator, maintainer\n\n---\n\n## License\n\nThis project is licensed under MIT.\n\n---\n\n[01]:   https://github.com/fatih/gomodifytags\n[vigo]: https://vigo.io\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvigo%2Ftextmate2-gomodifytags","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvigo%2Ftextmate2-gomodifytags","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvigo%2Ftextmate2-gomodifytags/lists"}