sponsor Vim development Vim logo Vim Book Ad

vim-gista : An alternative gist.vim, vim plugin which manipulate gists in Vim

 script karma  Rating 0/0, Downloaded by 2954  Comments, bugs, improvements  Vim wiki

created by
Alisue Lambda
 
script type
utility
 
description
vim-gista is a plugin for manipulating Gist in Vim. It provide the following features:

- List gists of a particular lookup
- List commits of a gist
- Open a gist as a JSON file
- Open a file of a gist
- Post a content of the current buffer
- Patch a content of the current buffer to a gist
- Rename files in a gist
- Remove files in a gist
- Delete a gist
- Star/Unstar a gist
- Folk a gist

Developed on https://github.com/lambdalisue/vim-gista
 
install details
" vim-plug
Plug 'lambdalisue/vim-gista'

" neobundle.vim
NeoBundle 'lambdalisue/vim-gista'

" neobundle.vim (Lazy)
NeoBundleLazy 'lambdalisue/vim-gista', {
    \ 'on_cmd': ['Gista']
    \ 'on_func': 'gista#'
    \}

" Or install the repository into your runtimepath manually.
 

rate this script Life Changing Helpful Unfulfilling 
script versions (upload new version)

Click on the package to download.

package script version date Vim version user release notes
vim-gista-v2.5.0.zip v2.5.0 2017-02-20 7.4 Alisue Lambda - Support Neovim
- Add --stay option to post/patch
vim-gista-v2.3.3.zip v2.3.3 2016-04-10 7.4 Alisue Lambda - Improve documents (v2.3.1)
- Refactoring codes (v2.3.1)
- Support neovim (v2.3.2)
- Support BufReadCmd( v2.3.2)
- Support 32 bit GistID (v2.3.3)
vim-gista-2.3.0.zip 2.3.0 2016-01-25 7.4 Alisue Lambda - Get GitHub username from git config github.user
- Add short options (alias)
- Add GistaXXX autocmds for :Gista xxx
- Fix several bugs
vim-gista-2.2.0.zip 2.2.0 2016-01-20 7.4 Alisue Lambda - Refactoring code
- Fix critical issue on +python
vim-gista-2.1.0.zip 2.1.0 2016-01-19 7.4 Alisue Lambda - Use URI like bufname instead of comma separated one (Tue Jan 19 10:20:00 2016 +0900) [7275b81](https://github.com/lambdalisue/vim-gista/commit/7275b814bdb113418c630d490253115b15c0ed56)
- Fix Gista logout (Tue Jan 19 20:46:28 2016 +0900) [8bac83f](https://github.com/lambdalisue/vim-gista/commit/8bac83f45c6b6c9a78c6a83b8e9ea157af5d8773)
- Fix temporal authorization and improve Gista status (Tue Jan 19 20:56:38 2016 +0900) [8c32b7a](https://github.com/lambdalisue/vim-gista/commit/8c32b7ab7dae76d688daeb841d1fe12292705ad1)
- Merge pull request #60 from lambdalisue/fix/gista_filenames (Tue Jan 19 21:44:40 2016 +0900) [6ee3036](https://github.com/lambdalisue/vim-gista/commit/6ee3036852bfb27fb2b503c0e491876713f44e99)
- Bump version (Tue Jan 19 21:45:59 2016 +0900) [39cd521](https://github.com/lambdalisue/vim-gista/commit/39cd52179224923f41da17720c57270d2f002e69)
- Update changelog (Tue Jan 19 21:46:47 2016 +0900) [9396538](https://github.com/lambdalisue/vim-gista/commit/9396538aa03b2d1b763a883067e5aba86f7c04d2)


vim-gista-2.0.4.zip 2.0.4 2016-01-18 7.4 Alisue Lambda - Fix #58: SSL certification error (Mon Jan 18 21:49:46 2016 +0900) [f18f08d](https://github.com/lambdalisue/vim-gista/commit/f18f08de9df737b7de45ac08c507a8456f7fc0f0)
- Update Web.API.GitHub (Mon Jan 18 23:56:01 2016 +0900) [0ddac64](https://github.com/lambdalisue/vim-gista/commit/0ddac64f274a2a5bf53fa6a61e09c52bdfeefc4c)
- Bump version (Tue Jan 19 00:02:57 2016 +0900) [d2e574a](https://github.com/lambdalisue/vim-gista/commit/d2e574a17391239af13d87719391311564f2a1cb)
- Update changelog (Tue Jan 19 00:09:34 2016 +0900) [65819e3](https://github.com/lambdalisue/vim-gista/commit/65819e3e27d0fe7b33335d2e8832095018d231c0)
vim-gista-2.0.3.zip 2.0.3 2016-01-18 7.4 Alisue Lambda
    Fix syntax highlight issue (Add 'default') (Mon Jan 18 00:50:50 2016 +0900) 781dba0
    Semantic fix (Mon Jan 18 00:55:54 2016 +0900) 0529b6e
    Suppress 'no such autocmd' issue (Mon Jan 18 20:12:39 2016 +0900) 5f2d11b
    Fix Gista post/patch filename assign bug (Mon Jan 18 20:42:55 2016 +0900) ecb198d
    Fix keepalt issue (Mon Jan 18 20:54:18 2016 +0900) bedc229
    Bump version (Mon Jan 18 20:58:47 2016 +0900) f3ea722

vim-gista-2.0.2.zip 2.0.2 2016-01-17 7.4 Alisue Lambda Fix an username option on Gista login

Gista login --username={username} --> Gista login {username} (follow the document)
vim-gista-2.0.1.zip 2.0.1 2016-01-17 7.4 Alisue Lambda Fix critical issues related on :write command

- Fix wrong filename re-apply in ':w' or ':Gista patch'
- Fix ':w' to save content changes (Close #56)

vim-gista-2.0.0.zip 2.0.0 2016-01-16 7.4 Alisue Lambda Re-created and no backward compatibility exists.
The following new features are available

- Support additional API (e.g. GitHub & GitHub Enterpriese)
- Support multi account
- Support temporal authorization
- Fast fetching by multi-thread (+python/+python3 is required)
- List commits of a gist
- Support Shougo/unite.vim for listing (vim-gista-unite)
- Support ctrlpvim/ctrlp.vim for listing (vim-gista-ctrlp)
vim-gista-0.1.15.zip 0.1.15 2014-07-07 7.3 Alisue Lambda v0.1.8

6e5e499 • Add auto yank featrue (Sat Jul 5 17:32:11 2014 +0900)
a576c0a • Bump version (Sat Jul 5 17:35:50 2014 +0900)
e057e43 • Add/Change highlights in gista:list and unite (Mon Jul 7 12:44:28 2014 +0900)
0757786 • Bump version (Mon Jul 7 12:46:57 2014 +0900)
v0.1.9

09b2c11 • Add Vim 7.3 support (Mon Jul 7 14:45:50 2014 +0900)
072bb6b • Bump version (Mon Jul 7 14:46:37 2014 +0900)
v0.1.10

11d4893 • Support Vim 7.3 (Mon Jul 7 14:53:11 2014 +0900)
738df8d • Merge branch 'vim703_support' (Mon Jul 7 14:54:15 2014 +0900)
5d9c61c • Bump version (Mon Jul 7 14:55:14 2014 +0900)
v0.1.11

672face • Support 'anonymous_mode' (Mon Jul 7 15:26:53 2014 +0900)
a2ab173 • Add document and Bump version (Mon Jul 7 15:29:44 2014 +0900)
v0.1.12

b7b9626 • Fixed #28 (Mon Jul 7 17:40:17 2014 +0900)
57a58c3 • Cancel 'rename' action for same filename (Mon Jul 7 17:41:43 2014 +0900)
e16e064 • Bump version (Mon Jul 7 18:05:26 2014 +0900)
v0.1.13

023cd8c • Add 'disable_python_client' option (Mon Jul 7 17:36:07 2014 +0900)
5d5c521 • Bump version (Mon Jul 7 18:09:42 2014 +0900)
v0.1.14

0dfa117 • Fixed #29 (Mon Jul 7 18:32:12 2014 +0900)
ed96f7f • Fixed #30 (Mon Jul 7 18:41:08 2014 +0900)
f8dad73 • Merge branch 'issue30' (Mon Jul 7 18:41:26 2014 +0900)
7418491 • Bump version (Mon Jul 7 18:41:50 2014 +0900)
v0.1.15

85be809 • Add a way to reopen a gist without using cache (Mon Jul 7 20:32:56 2014 +0900)
02ddd7e • Bump version (Mon Jul 7 20:33:28 2014 +0900)
vim-gista-0.1.6.zip 0.1.6 2014-07-03 7.4 Alisue Lambda Initial upload
ip used for rating: 3.135.200.211

If you have questions or remarks about this site, visit the vimonline development pages. Please use this site responsibly.
Questions about Vim should go to the maillist. Help Bram help Uganda.
   
Vim at Github