{"id":27025977,"url":"https://github.com/uskhokhar/vim-gh-review","last_synced_at":"2026-02-17T10:36:23.994Z","repository":{"id":285437806,"uuid":"958141974","full_name":"USKhokhar/vim-gh-review","owner":"USKhokhar","description":"A Vim plugin for reviewing GitHub pull requests without leaving your editor.","archived":false,"fork":false,"pushed_at":"2025-04-06T17:24:15.000Z","size":27,"stargazers_count":0,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-09T08:21:42.249Z","etag":null,"topics":["github","neovim","vim","vim-plugin","vimscript"],"latest_commit_sha":null,"homepage":"","language":"Vim Script","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/USKhokhar.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-31T17:58:39.000Z","updated_at":"2025-04-08T17:04:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"0b38cbcc-62fa-4090-8586-2693cfd4989b","html_url":"https://github.com/USKhokhar/vim-gh-review","commit_stats":null,"previous_names":["uskhokhar/vim-gh-review"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/USKhokhar/vim-gh-review","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/USKhokhar%2Fvim-gh-review","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/USKhokhar%2Fvim-gh-review/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/USKhokhar%2Fvim-gh-review/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/USKhokhar%2Fvim-gh-review/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/USKhokhar","download_url":"https://codeload.github.com/USKhokhar/vim-gh-review/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/USKhokhar%2Fvim-gh-review/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29540186,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T08:11:05.436Z","status":"ssl_error","status_checked_at":"2026-02-17T08:09:38.860Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["github","neovim","vim","vim-plugin","vimscript"],"created_at":"2025-04-04T22:15:50.135Z","updated_at":"2026-02-17T10:36:23.985Z","avatar_url":"https://github.com/USKhokhar.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vim-gh-review\n\nA Vim plugin for reviewing GitHub pull requests without leaving your editor.\n\n## Features\n\n- List open pull requests in the current repository\n- View PR details and diffs\n- Add comments to specific lines\n- Approve or request changes on PRs\n- Merge PRs with different strategies (merge, squash, rebase)\n\n## Requirements\n\n- Vim compiled with `+job` and `+json` features\n- `curl` command-line tool\n- A GitHub personal access token\n\n## Installation\n\n### Using vim-plug\n\n```vim\nPlug 'USKhokhar/vim-gh-review'\n```\n\n### Using Vundle\n\n```vim\nPlugin 'USKhokhar/vim-gh-review'\n```\n\n### Using Pathogen\n\n```bash\ngit clone https://github.com/USKhokhar/vim-gh-review.git ~/.vim/bundle/vim-gh-review\n```\n\n## Setup\n\nAfter installing the plugin, set up your GitHub token:\n\n```vim\n:GHSetupToken\n```\n\nYou will be prompted to enter your GitHub personal access token. The token needs to have the following permissions:\n- `repo` scope for private repositories\n- `public_repo` scope for public repositories\n\n## Usage\n\n### Commands\n\n- `:GHListPRs` - List all open pull requests for the current repository\n- `:GHReview \u003cpr_number\u003e` - Open a specific pull request for review\n- `:GHComment [line_number]` - Add a comment to the current PR\n- `:GHApprove \u003cpr_number\u003e` - Approve the specified pull request\n- `:GHRequestChanges \u003cpr_number\u003e` - Request changes for the specified pull request\n- `:GHMerge \u003cpr_number\u003e` - Merge the specified pull request\n\n### Mappings\n\nIn PR list buffer:\n- `\u003cCR\u003e` - Open the PR under cursor for review\n\nIn PR review buffer:\n- `\u003cleader\u003ec` - Add comment at current position\n- `\u003cleader\u003ea` - Approve the PR\n- `\u003cleader\u003er` - Request changes for the PR\n- `\u003cleader\u003em` - Merge the PR\n\n## Configuration\n\n```vim\n\" Path to store your GitHub token\nlet g:gh_review_token_file = '~/.config/gh_review_token'\n\n\" Directory to store cached PR data\nlet g:gh_review_cache_dir = '~/.cache/gh_review'\n```\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nDistributed under the same terms as Vim itself. See `:help license`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuskhokhar%2Fvim-gh-review","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuskhokhar%2Fvim-gh-review","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuskhokhar%2Fvim-gh-review/lists"}