11*Gist.vim*  Vimscript for creating gists (http://gist.github.com )
22
3- Usage | gist- vim-usage| 
4- Tips | gist- vim-tips| 
5- License | gist- vim-license| 
6- Install | gist- vim-install| 
7- Requirements | gist- vim-requirements| 
8- Setup | gist- vim-setup| 
9- FAQ | gist- vim-faq| 
3+ Usage | vim-gist -usage | 
4+ Tips | vim-gist -tips | 
5+ License | vim-gist -license | 
6+ Install | vim-gist -install | 
7+ Requirements | vim-gist -requirements | 
8+ Setup | vim-gist -setup | 
9+ FAQ | vim-gist -faq | 
1010
1111This is a vimscript for creating gists (http://gist.github.com )
1212
13- For the latest version please see https://github.com/mattn/gist- vim .
13+ For the latest version please see https://github.com/mattn/vim-gist  .
1414
1515============================================================================== 
16- USAGE *:Gist*  *gist- vim-usage* 
16+ USAGE *:Gist*  *vim-gist -usage* 
1717
1818- Post current buffer to gist, using default privacy option. > 
1919
@@ -120,15 +120,15 @@ USAGE *:Gist* *gist-vim-usage*
120120- While the gist list is visible, the following mappings apply:
121121
122122 - 'o' or 'Enter' will open the selected gist file in a new buffer
123-  and close the gist- vim listing split.
123+  and close the vim-gist  listing split.
124124 - 'b' will open the selected gist file in a browser. If you are in
125125 GUI vim you can also achieve this by pressing 'Shift-Enter'.
126126 - 'y' will copy the contents of the selected gist to the clipboard,
127-  and close the gist- vim listing split.
127+  and close the vim-gist  listing split.
128128 - 'p' will (copy and) paste the contents of the selected gist to the
129-  buffer from which gist- vim was called, and close the gist- vim
129+  buffer from which vim-gist  was called, and close the vim-gist 
130130 listing split.
131-  - 'Esc' will close the gist- vim listing split without performing any
131+  - 'Esc' will close the vim-gist  listing split without performing any
132132 further action.
133133
134134- Open the gist on browser after you post or update it.
@@ -141,7 +141,7 @@ USAGE *:Gist* *gist-vim-usage*
141141 :Gist! 
142142< 
143143============================================================================== 
144- TIPS *gist- vim-tips* 
144+ TIPS *vim-gist -tips* 
145145
146146If you set "g:gist_clip_command", gist.vim will copy the gist code with option
147147"-c".
@@ -216,13 +216,13 @@ in your local file, then call >
216216
217217 :Gist 
218218
219- The gist- vim listing split lists gists ids, names (filenames) as well as
219+ The vim-gist  listing split lists gists ids, names (filenames) as well as
220220their description. This is done following a table layout, with fixed space
221- for each column. For offering quick browsing, gist- vim will truncate all
221+ for each column. For offering quick browsing, vim-gist  will truncate all
222222output exceeding the available horizontal space, assuring that every gist
223223listed only takes one line on the table. Although the gist id field width is
224224fixed internally, the user can define the length of the (file)name field on
225- the gist- vim listing. This can be done by the following declaration:
225+ the vim-gist  listing. This can be done by the following declaration:
226226
227227 let g:gist_namelength = 20
228228
@@ -241,7 +241,7 @@ All other values are treated as 1.
241241This variable's value is 1 by default.
242242
243243============================================================================== 
244- LICENSE *gist- vim-license* 
244+ LICENSE *vim-gist -license* 
245245
246246
247247 Copyright 2010 by Yasuhiro Matsumoto
@@ -267,15 +267,15 @@ LICENSE *gist-vim-license*
267267 OF THE POSSIBILITY OF SUCH DAMAGE.
268268
269269============================================================================== 
270- INSTALL *gist- vim-install* 
270+ INSTALL *vim-gist -install* 
271271
272272Copy following files into your plugin directory.
273273
274274rtp:
275275 - autoload/gist.vim
276276 - plugin/gist.vim
277277
278- If you want to uninstall gist.vim, remember to also remove `~/.gist- vim ` .
278+ If you want to uninstall gist.vim, remember to also remove `~/.vim-gist  ` .
279279
280280You need to install webapi-vim also:
281281
@@ -286,17 +286,17 @@ If you want to use latest one:
286286 https://github.com/mattn/webapi-vim 
287287
288288============================================================================== 
289- REQUIREMENTS *gist- vim-requirements* 
289+ REQUIREMENTS *vim-gist -requirements* 
290290
291291 - curl command (http://curl.haxx.se/ )
292292 - webapi-vim (https://github.com/mattn/webapi-vim )
293293 - and, if you want to use your git profile, the git command-line client.
294294
295295============================================================================== 
296- SETUP *gist- vim-setup* 
296+ SETUP *vim-gist -setup* 
297297
298- This plugin uses GitHub API v3. The authentication value is stored in `~/.gist- vim ` .
299- gist- vim provides two ways to authenticate against the GitHub APIs.
298+ This plugin uses GitHub API v3. The authentication value is stored in `~/.vim-gist  ` .
299+ vim-gist  provides two ways to authenticate against the GitHub APIs.
300300
301301First, you need to set your GitHub username in global git config:
302302> 
@@ -312,7 +312,7 @@ If you have two-factor authentication enabled on GitHub, you'll see the message
312312"Must specify two-factor authentication OTP code." In this case, you need to
313313create a "Personal Access Token" on GitHub's "Account Settings" page
314314(https://github.com/settings/applications ) and place it in a file
315- named ~/.gist- vim like this:
315+ named ~/.vim-gist  like this:
316316> 
317317 token xxxxx 
318318< 
@@ -331,13 +331,13 @@ This is not secure at all, so strongly discouraged.
331331NOTE: the username is optional if you only send anonymous gists.
332332
333333============================================================================== 
334- FAQ *gist- vim-faq* 
334+ FAQ *vim-gist -faq* 
335335
336336Q. :Gist returns a Forbidden error
337- A. Try deleting ~/.gist- vim and authenticating again.
337+ A. Try deleting ~/.vim-gist  and authenticating again.
338338
339339============================================================================== 
340- THANKS *gist- vim-thanks* 
340+ THANKS *vim-gist -thanks* 
341341
342342 AD7six
343343 Bruno Bigras
0 commit comments