@@ -27,11 +27,13 @@ USAGE *:Gist* *gist-vim-usage*
27
27
- Create a private gist. >
28
28
29
29
:Gist -p
30
+ :Gist --private
30
31
<
31
32
- Create a public gist.
32
33
(Only relevant if you've set gists to be private by default.) >
33
34
34
35
:Gist -P
36
+ :Gist --public
35
37
<
36
38
- Post whole text to gist as public.
37
39
This is only relevant if you've set gists to be private by default.
@@ -41,15 +43,18 @@ USAGE *:Gist* *gist-vim-usage*
41
43
- Create a gist anonymously. >
42
44
43
45
:Gist -a
46
+ :Gist --anonymous
44
47
<
45
48
- Create a gist with all open buffers. >
46
49
47
50
:Gist -m
51
+ :Gist --multibuffer
48
52
<
49
53
- Edit the gist (you need to have opened the gist buffer first).
50
54
You can update the gist with the {:w} command within the gist buffer. >
51
55
52
56
:Gist -e
57
+ :Gist --edit
53
58
<
54
59
- Edit the gist with name "foo.js" (you need to have opened the gist buffer
55
60
first). >
@@ -60,18 +65,21 @@ USAGE *:Gist* *gist-vim-usage*
60
65
first). >
61
66
62
67
:Gist -s something
68
+ :Gist --description something
63
69
:Gist -e -s something
64
70
<
65
71
- Delete the gist (you need to have opened the gist buffer first).
66
72
Password authentication is needed. >
67
73
68
74
:Gist -d
75
+ :Gist --delete
69
76
<
70
77
- Fork the gist (you need to have opened the gist buffer first).
71
78
Password authentication is needed. >
72
79
73
80
:Gist -f
74
- <
81
+ :Gist --fork
82
+ <
75
83
- Star the gist (you need to have opened the gist buffer first).
76
84
Password authentication is needed.
77
85
>
@@ -93,6 +101,7 @@ USAGE *:Gist* *gist-vim-usage*
93
101
- List your public gists. >
94
102
95
103
:Gist -l
104
+ :Gist --list
96
105
<
97
106
- List gists from user "mattn". >
98
107
@@ -101,14 +110,17 @@ USAGE *:Gist* *gist-vim-usage*
101
110
- List everyone's gists. >
102
111
103
112
:Gist -la
113
+ :Gist --listall
104
114
<
105
115
- List gists from your starred gists.
106
116
>
107
117
:Gist -ls
118
+ :Gist --liststar
108
119
<
109
120
- Open the gist on browser after you post or update it.
110
121
>
111
122
:Gist -b
123
+ :Gist --browser
112
124
<
113
125
- Post as new gist after editing on the buffer.
114
126
>
0 commit comments