• Stars
    star
    1,688
  • Rank 27,642 (Top 0.6 %)
  • Language
    Vim Script
  • Created about 16 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Vim plugin for Gist

Gist.vim

This is a vimscript for creating gists (http://gist.github.com).

For the latest version please see https://github.com/mattn/vim-gist.

Usage:

  • Post current buffer to gist, using default privacy option.

      :Gist
    
  • Post selected text to gist, using default privacy option. This applies to all permutations listed below (except multi).

      :'<,'>Gist
    
  • Create a private gist.

      :Gist -p
    
  • Create a public gist. (Only relevant if you've set gists to be private by default.)

      :Gist -P
    

This is only relevant if you've set gists to be private by default; if you get an empty gist list, try ":Gist --abandon".

  • Create a gist anonymously.

      :Gist -a
    
  • Create a gist with all open buffers.

      :Gist -m
    
  • Edit the gist (you need to have opened the gist buffer first). You can update the gist with the ":w" command within the gist buffer.

      :Gist -e
    
  • Edit the gist with name 'foo.js' (you need to have opened the gist buffer first).

      :Gist -e foo.js
    
  • Post/Edit with the description " (you need to have opened the gist buffer first). >

      :Gist -s something
      :Gist -e -s something
    
  • Delete the gist (you need to have opened the gist buffer first). Password authentication is needed.

      :Gist -d
    
  • Fork the gist (you need to have opened the gist buffer first). Password authentication is needed.

      :Gist -f
    
  • Star the gist (you need to have opened the gist buffer first). Password authentication is needed.

      :Gist +1
    
  • Unstar the gist (you need to have opened the gist buffer first). Password authentication is needed.

      :Gist -1
    
  • Get gist XXXXX.

      :Gist XXXXX
    
  • Get gist XXXXX and add to clipboard.

      :Gist -c XXXXX
    
  • List your public gists.

      :Gist -l
    
  • List gists from user "mattn".

      :Gist -l mattn
    
  • Specify the number of gists listed:

      :Gist -l -n 100
    
  • List everyone's gists.

      :Gist -la
    
  • List gists from your starred gists.

      :Gist -ls
    
  • Open the gist on browser after you post or update it.

      :Gist -b
    

List Feature

  • Useful mappings on the gist-listing buffer:

    • Both o or Enter open the gist file in a new buffer, and close the vim-gist listing one.
    • b opens the gist file in a browser; this is necessary because Shift-Enter (as was originally) only works for GUI vim.
    • y copies the contents of the selected gist to the clipboard, and closes the vim-gist buffer.
    • p pastes the contents of the selected gist to the buffer from where vim-gist was called, and closes the vim-gist buffer.
    • Hitting Escape or Tab at the vim-gist buffer closes it.
  • Gist listing has fixed-length columns now, more amenable to eye inspection. Every line on the gist-listing buffer contains the gist id, name and description, in that order. Columns are now padded and truncated to offer a faster browsing, in the following way:

    • The gist id string is fixed at 32 characters.

    • The length (in characters) of the name of the gist is fixed and can be set by the user using, for example:

      let g:gistvim_namelength = 20

      The default value for gistvim_namelength is 30. If the gist (file)name exceeds that length, it is truncated to the specified length.

    • Finally, the gist description is truncated in length to fit the remaining of the line, avoiding wrapped lines that mess up the table layout.

    • Note that the gist listing buffer now does not show the field 'code' (not sure what that did in the first place).

Tips:

If you set g:gist_clip_command, gist.vim will copy the gist code with option '-c'.

  • Mac:

      let g:gist_clip_command = 'pbcopy'
    
  • Linux:

      let g:gist_clip_command = 'xclip -selection clipboard'
    
  • Others (cygwin?):

      let g:gist_clip_command = 'putclip'
    

If you want to detect filetype from the filename:

let g:gist_detect_filetype = 1

If you want to open browser after the post:

let g:gist_open_browser_after_post = 1

If you want to change the browser:

let g:gist_browser_command = 'w3m %URL%'

or:

let g:gist_browser_command = 'opera %URL% &'

On windows, this should work with your user settings.

If you want to show your private gists with ":Gist -l":

let g:gist_show_privates = 1

If you want your gist to be private by default:

let g:gist_post_private = 1

If you want your gist to be anonymous by default:

let g:gist_post_anonymous = 1

If you want to manipulate multiple files in a gist:

let g:gist_get_multiplefile = 1

If you want to use on GitHub Enterprise:

let g:gist_api_url = 'http://your-github-enterprise-domain/api/v3'

You need to either set global git config:

$ git config --global github.user Username

If you want to list more than 30 gists per page (maximum is 100):

let g:gist_per_page_limit = 100

License:

Copyright 2010 by Yasuhiro Matsumoto
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice,
   this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.

Install:

Copy it to your plugin directory. gist.vim will create a curl cookie-jar file in your runtimepath.

  • rtp:
    • autoload/gist.vim
    • plugin/gist.vim

If you want to uninstall gist.vim, remember to also remove ~/.gist-vim.

You need to install webapi-vim also:

http://www.vim.org/scripts/script.php?script_id=4019

If you want to use latest one:

https://github.com/mattn/webapi-vim

Install with Vundle

Add the following lines to your .vimrc.

Bundle 'mattn/webapi-vim'
Bundle 'mattn/vim-gist'

Now restart Vim and run :BundleInstall.

Install with NeoBundle

Add the following line to your .vimrc.

NeoBundle 'mattn/vim-gist', {'depends': 'mattn/webapi-vim'}

Requirements:

Setup:

This plugin supports both basic and two-factor authentication using GitHub API v3. The plugin stores its credentials in ~/.gist-vim.

First, you need to set your GitHub username in git's global configuration:

$ git config --global github.user <username>

Then vim-gist will ask for your password in order to create an access token. If you have two-factor authentication enabled, vim-gist will also prompt you to enter the two-factor key you receive.

NOTE: If you want you can set it directly to g:github_user and g:gist_token.

Whichever type of authentication you use, your GitHub password will not be stored, only a OAuth access token produced specifically for vim-gist. The token is stored in ~/.gist-vim. If you stop using the plugin, you can easily remove this file. To revoke the associated GitHub token, go to the list of "Authorized applications" on GitHub's "Account Settings" page.

Note: the username is optional if you only send anonymous gists.

More Repositories

1

go-sqlite3

sqlite3 driver for go using database/sql
C
7,722
star
2

emmet-vim

emmet for vim: http://emmet.io/
Vim Script
6,288
star
3

goreman

foreman clone written in go language
Go
2,330
star
4

go-gtk

Go binding for GTK
Go
2,108
star
5

gom

Go Manager - bundle for go
Go
1,389
star
6

anko

Scriptable interpreter written in golang
Go
1,364
star
7

go-generics-example

Example code for Go generics
Go
1,324
star
8

vim-lsp-settings

Auto configurations for Language Server for vim-lsp
Vim Script
1,110
star
9

memo

πŸ““ Memo Life For You
Go
924
star
10

efm-langserver

General purpose Language Server
Go
880
star
11

goveralls

Go
789
star
12

go-isatty

Go
739
star
13

sudo

sudo for windows
Go
732
star
14

go-colorable

Go
713
star
15

webapi-vim

vim interface to Web API
Vim Script
680
star
16

longcat

Looooooooooooooooooooooooooooooooooooooooooooooong cat
Go
645
star
17

go-oci8

Oracle driver for Go using database/sql
Go
618
star
18

docx2md

Convert Microsoft Word Document to Markdown
Go
575
star
19

awesome-twitter-communities

Awesome Twitter Communities for Engineers
561
star
20

go-mastodon

mastodon client for golang
Go
553
star
21

go-runewidth

wcwidth for golang
Go
544
star
22

go-shellwords

Parse line as shell words
Go
491
star
23

vim-sonictemplate

Easy and high speed coding method
Vim Script
329
star
24

go-webkit

webkit widget for go-gtk
Go
291
star
25

twty

command-line twitter client written in golang
Go
280
star
26

gopher

Windows Desktop Mascot Applicaiton "Gopher"
Go
279
star
27

go-tflite

Go binding for TensorFlow Lite
Jupyter Notebook
270
star
28

go-v8

Go binding for v8
Go
264
star
29

calendar-vim

calendar vimscript
Vim Script
253
star
30

flappyvird-vim

Vim Script
235
star
31

growl-for-linux

Growl Implementation For Linux #growl4linux
C
207
star
32

go-zglob

Go
195
star
33

go-redmine

Go
186
star
34

ft

File Transferer
Go
185
star
35

go-tty

Go
184
star
36

goemon

五右葛門
Go
179
star
37

gof

Go
177
star
38

qq

Go
166
star
39

vim-maketable

Vim Script
150
star
40

vim-goimports

Vim plugin for Minimalist Gopher
Vim Script
149
star
41

go-pipeline

Go
147
star
42

etcdenv

Go
142
star
43

jvgrep

grep for japanese vimmer
Go
140
star
44

go-sixel

DRCS/Sixel Encoder/Decoder
Go
137
star
45

go-vue-example

Example App using Go, Vue.js, Element, Axios
Go
135
star
46

tailscale-systray

Linux port of tailscale system tray menu.
Go
134
star
47

go-adodb

Microsoft ActiveX Object DataBase driver for go that using exp/sql
Go
133
star
48

vim-particle

This plugin works on Windows
C
129
star
49

todo

A simple command-line todo list written in Go.
Go
129
star
50

jedie

Static site generator written in golang
Go
128
star
51

clask

Web micro-framework like flask in C++.
C++
124
star
52

golisp

Lisp Interpreter
Go
123
star
53

go-pointer

Go
118
star
54

godown

Convert HTML into Markdown
Go
113
star
55

go-gimei

Go
113
star
56

golang-wasm-example

Example app using Go's wasm support.
JavaScript
111
star
57

vim-trex

Running T-Rex with Vim
JavaScript
111
star
58

livestyle-vim

Emmet LiveStyle for Vim
Vim Script
110
star
59

go-pubsub

Go
107
star
60

go-scan

Go
103
star
61

go-slim

Slim Template Engine for golang
Go
103
star
62

vim-notification

Message notification system for Vim8
Vim Script
103
star
63

gowasmer

WebAssembly runtime for wasmer-go
Go
102
star
64

bsky

A cli application for bluesky social
Go
101
star
65

dotfiles

100
star
66

vim-starwars

Playing StarWars on Vim
Vim Script
97
star
67

vim-brain

Neural Networks written in Vim script
Vim Script
96
star
68

go-nulltype

Null friendly types
Go
96
star
69

go-jsonpointer

Go
95
star
70

files

Fast file find
Go
92
star
71

mkup

Portable Markdown Previewer
JavaScript
92
star
72

go-uv

Go binding for libuv
Go
92
star
73

dboxpaper

client for Dropbox Paper
Go
92
star
74

mruby-uv

interface to libuv for mruby(experimental)
C
91
star
75

davfs

Go
90
star
76

tinytinyhttpd

tiny tiny httpd
C++
88
star
77

echo-scaffold

Echo scaffold is CLI to generate scaffolds for the echo framework.
Go
87
star
78

vim-chatgpt

Vim Script
85
star
79

streeem

ごめんγͺさいごめんγͺさい
Go
85
star
80

go-mruby

go-mruby make interface to embed mruby into go.
Go
83
star
81

algia

A cli application for nostr
Go
80
star
82

http-server

C
76
star
83

go-ieproxy

Go
76
star
84

cho

Go
76
star
85

vim-sqlfmt

Vim Script
74
star
86

vim-molder

Vim Script
71
star
87

vim-treesitter

Go
70
star
88

vimtweak

VimTweak : The tweaking dll for GVim.exe.
C
69
star
89

gomate

Go
68
star
90

awesome-sonomasakada

68
star
91

ansicolor-w32.c

C
67
star
92

gh-ost

gh extension to meet ghost.
Shell
66
star
93

http-gonsole

Speak HTTP like a local. (the simple, intuitive HTTP console, golang version)
Go
65
star
94

vim-fz

Ultra Fast Fuzzy Finder for Vim8
Vim Script
65
star
95

vdbi-vim

Database client for Vim
Vim Script
64
star
96

chatgpt

Go
63
star
97

xgopher

Linux port of https://github.com/mattn/gopher
C
61
star
98

gntp-send

command line program that send to growl using GNTP protocol.
C
57
star
99

vim-usa_president_2016

Vim Script
55
star
100

go-uwsgi

uwsgi implement for go
Go
54
star