https://github.com/deepredsky/vim-pivotal
Access Pivotal stories in Vim!
https://github.com/deepredsky/vim-pivotal
pivotal vim
Last synced: about 1 year ago
JSON representation
Access Pivotal stories in Vim!
- Host: GitHub
- URL: https://github.com/deepredsky/vim-pivotal
- Owner: deepredsky
- License: mit
- Archived: true
- Created: 2018-10-12T22:05:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-12T20:58:58.000Z (over 7 years ago)
- Last Synced: 2025-04-04T13:48:47.235Z (about 1 year ago)
- Topics: pivotal, vim
- Language: Vim script
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vim Pivotal
Access Pivotal stories in Vim!
Prerequisites
-------------
This plugin requires [webapi-vim][a] and [fzf.vim][b], FZF is used for showing
current iteration stories in FZF window
Installation
------------
Using [vim-plug](https://github.com/junegunn/vim-plug):
```vim
Plug 'deepredsky/vim-pivotal'
```
This plugin requires pivotal project id and auth token to be configured.
```vim
let g:project_id = 12345
let g:pivotal_auth_token = 'xxooxxooxxooxx'
```
These values can also be set with environment variables via `PIVOTAL_PROJECT_ID` and `PIVOTAL_AUTH_TOKEN`
Usage
-----
```vim
" Get a pivotal story by ID
:Pivotal 123456
" Fuzzy find pivotal stories in current iteration
:PivotalIteration
" Go to a story in Pivotal webpage ( in pivotal buffer )
:PivotalOpen
```
License
-------
MIT
[a]: https://github.com/mattn/webapi-vim
[b]: https://github.com/junegunn/fzf.vim