{"id":16485334,"url":"https://github.com/jparise/vim-phabricator","last_synced_at":"2025-10-11T02:43:33.406Z","repository":{"id":46210073,"uuid":"227466451","full_name":"jparise/vim-phabricator","owner":"jparise","description":"Vim plugin for Phabricator and Arcanist","archived":false,"fork":false,"pushed_at":"2021-11-06T17:07:46.000Z","size":26,"stargazers_count":19,"open_issues_count":1,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-12T13:25:12.742Z","etag":null,"topics":["arcanist","phabricator","phorge","vim"],"latest_commit_sha":null,"homepage":"","language":"Vim script","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/jparise.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-12-11T21:46:40.000Z","updated_at":"2024-04-14T02:25:01.000Z","dependencies_parsed_at":"2022-09-10T13:20:39.831Z","dependency_job_id":null,"html_url":"https://github.com/jparise/vim-phabricator","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jparise%2Fvim-phabricator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jparise%2Fvim-phabricator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jparise%2Fvim-phabricator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jparise%2Fvim-phabricator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jparise","download_url":"https://codeload.github.com/jparise/vim-phabricator/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221850658,"owners_count":16891662,"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":["arcanist","phabricator","phorge","vim"],"created_at":"2024-10-11T13:25:29.056Z","updated_at":"2025-10-11T02:43:28.374Z","avatar_url":"https://github.com/jparise.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Phabricator Plugin for Vim\n\nThis [Vim](https://www.vim.org/) plugin provides features for interacting with\n[Phabricator](https://phacility.com/phabricator/)-based repositories. It\nbuilds upon the foundational git functionality provided by [Fugitive][].\n\n* Syntax highlighting for Arcanist templates and configuration files\n* `:Gbrowse` support for browsing Phabricator URLs from the current buffer\n* Completion support for users and projects in Arcanist diff templates using\n  [`\u003cC-X\u003e\u003cC-O\u003e`][compl-omni] (requires [curl][] and a [Conduit API][conduit]\n  token)\n\n[fugitive]: https://github.com/tpope/vim-fugitive\n[compl-omni]: http://vimdoc.sourceforge.net/htmldoc/insert.html#compl-omni\n[curl]: https://curl.haxx.se/\n\n## Installation\n\n### Using [vim-plug][plug]\n\n1. Add `Plug 'jparise/vim-phabricator'` to `~/.vimrc`\n2. `vim +PluginInstall +qall`\n\n[plug]: https://github.com/junegunn/vim-plug\n\n### Using Vim Packages\n\n```sh\nmkdir -p ~/.vim/pack/jparise/start\ncd ~/.vim/pack/jparise/start\ngit clone https://github.com/jparise/vim-phabricator.git phabricator\nvim -u NONE -c \"helptags phabricator/doc\" -c q\n```\n\n## Configuration\n\n### `g:phabricator_hosts`\n\nThis plugin automatically recognizes Phabricator repositories served from\nhosts named `phabricator` (eg. `phabricator.example.com`).\n\nThis variable lists additional hosts that should also be considered\nPhabricator hosts.\n\n### `g:phabricator_api_token`\n\n[Phabricator's Conduit API][conduit] is used to generate candidates for user\nand project completion. These API calls require an access token which can be\ngenerated in Phabricator's per-user Settings interface. For example:\n\n    https://phabricator.example.com/settings/user/USERNAME/page/apitokens/\n\nThe plugin will first attempt to read the per-host API token from the user's\n`~/.arcrc` configuration file. For example:\n\n```json\n{\n  \"hosts\": {\n    \"https://secure.phabricator.com/api/\": {\n      \"token\": \"api-secrettokencharacters\"\n    }\n  }\n}\n```\n\nIf an API token can not be read from the `~/.arcrc` file for the current\nPhabricator host, the value stored in `g:phabricator_api_token` will be used.\n\n[conduit]: https://secure.phabricator.com/book/phabricator/article/conduit/\n\n## License\n\nThis code is released under the terms of the MIT license.\nSee [`LICENSE`](LICENSE) for details.\n\n## Similar Projects\n\n* [arcanist.vim](https://github.com/solarnz/arcanist.vim) provides syntax\n  highlighting for Arcanist templates and configuration files.\n* [phabrowser.vim](https://github.com/peplin/vim-phabrowse) provides a Fugitive\n  browse handler for Phabricator.\n* [rhubarb.vim](https://github.com/tpope/vim-rhubarb) provides similar features\n  for GitHub-based repositories.\n* [vscode-phabricator](https://github.com/christianvuerings/vscode-phabricator)\n  provides similar Phabricator features for Visual Studio Code.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjparise%2Fvim-phabricator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjparise%2Fvim-phabricator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjparise%2Fvim-phabricator/lists"}