{"id":15178685,"url":"https://github.com/polvoazul/vimv-go","last_synced_at":"2026-03-02T13:09:32.860Z","repository":{"id":247964343,"uuid":"827359799","full_name":"polvoazul/vimv-go","owner":"polvoazul","description":"Vimv is a command-line tool that allows you to rename multiple files at once using your favorite text editor, Vim.","archived":false,"fork":false,"pushed_at":"2024-07-18T16:36:48.000Z","size":20,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-05T11:42:25.980Z","etag":null,"topics":["rename-files","vim"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/polvoazul.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-11T13:55:50.000Z","updated_at":"2024-07-18T16:36:51.000Z","dependencies_parsed_at":"2024-09-23T10:02:58.679Z","dependency_job_id":null,"html_url":"https://github.com/polvoazul/vimv-go","commit_stats":{"total_commits":15,"total_committers":1,"mean_commits":15.0,"dds":0.0,"last_synced_commit":"3a25759260d7979961dbb1d79a4a858865e7943f"},"previous_names":["polvoazul/vimv-go"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polvoazul%2Fvimv-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polvoazul%2Fvimv-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polvoazul%2Fvimv-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polvoazul%2Fvimv-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/polvoazul","download_url":"https://codeload.github.com/polvoazul/vimv-go/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240365884,"owners_count":19789991,"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":["rename-files","vim"],"created_at":"2024-09-27T15:21:27.944Z","updated_at":"2026-03-02T13:09:32.849Z","avatar_url":"https://github.com/polvoazul.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vimv - Renaming Files in Bulk using vim\n\nVimv is a command-line tool that allows you to rename multiple files at once using your favorite text editor, Vim.\n\nInspired on [vimv](https://github.com/thameera/vimv), but I plan to add more features.\n\n## Features\n\n* Supports renaming multiple files at once\n* Utilizes Vim for editing file names, allowing for powerful text manipulation capabilities\n* Shows colored diffs before applying changes\n* Provides a user-friendly interface for confirming changes before applying them\n\n## Usage\n\nTo use Vimv, simply run the command `vimv` followed by the list of files you want to rename. For example:\n```bash\nvimv file1.txt file2.txt file3.txt\n```\nThis will open Vim with a list of the files, allowing you to edit their names as needed. Once you save and exit Vim, Vimv will apply the changes to the original files.\n\n## Installation\n\n### Homebrew\n    Work in progres...\n\n### Manually:\nYou can download it from here: https://github.com/polvoazul/vimv-go/releases, then `chmod +x` it and add to somewhere in your path (like `/usr/local/bin/`).\n\n### Manually:\nYou can download it from here: https://github.com/polvoazul/vimv-go/releases, download it, make it executable and place it somewhere like /usr/local/bin. Alternatively run this command that does exactly this:\n\n```bash\n# Detect OS and architecture\nOS=$(uname -s)\nARCH=$(uname -m)\n\n# Map OS and architecture to download URL format\ncase $OS in \"Darwin\") OS_NAME=\"Darwin\" ;; \"Linux\") OS_NAME=\"Linux\" ;; \"MINGW\"*|\"MSYS\"*|\"CYGWIN\"*) OS_NAME=\"Windows\" ;; *) echo \"Unsupported OS: $OS\" ; exit 1 ;; esac\ncase $ARCH in \"x86_64\") ARCH_NAME=\"x86_64\" ;; \"arm64\"|\"aarch64\") ARCH_NAME=\"arm64\" ;; \"i386\"|\"i686\") ARCH_NAME=\"i386\" ;; *) echo \"Unsupported architecture: $ARCH\" ; exit 1 ;; esac\n\n# Get latest version\nVERSION=$(curl -s https://api.github.com/repos/polvoazul/vimv-go/releases/latest | grep -o '\"tag_name\": \"v[^\"]*\"' | cut -d'\"' -f4)\n\n# Download and install\nif [ \"$OS_NAME\" = \"Windows\" ]; then\n    echo Please do it manually by going to: \"https://github.com/polvoazul/vimv-go/releases/download/${VERSION}/vimv-go_${OS_NAME}_${ARCH_NAME}.zip\"\n    exit 1\nfi\n(\nset -e\ncd /tmp/\ncurl -L \"https://github.com/polvoazul/vimv-go/releases/download/${VERSION}/vimv-go_${OS_NAME}_${ARCH_NAME}.tar.gz\" -o /tmp/vimv.tar.gz\ntar xzf vimv.tar.gz\nchmod +x vimv-go\nsudo mv vimv-go /usr/local/bin/vimv\nrm vimv.tar.gz\necho Installed successfully!\n)\n```\n\n## Contributing\n\nContributions to Vimv are welcome! If you have any suggestions or bug fixes, please open an issue or submit a pull request.\n\n\n## License\n\nVimv is licensed under the WTFPL (do whatever you want).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpolvoazul%2Fvimv-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpolvoazul%2Fvimv-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpolvoazul%2Fvimv-go/lists"}