You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -34,6 +61,12 @@ If you pass `[public=true]` it won't prompt for privacy later.
34
61
35
62
After you enter the description and privacy settings, the plugin ask for confirmation and will create the Gist using the gh command-line tool and copy the Gist's URL to the given clipboard registry.
36
63
64
+
You can also list your gists and edit their files on the fly.
65
+
```vim
66
+
:ListGists
67
+
```
68
+
-`:ListGists` will list all your gists and after you select one it will open a buffer to edit it
69
+
37
70
## Configuration
38
71
39
72
`gist.nvim` provides a few configuration options that you can set as global params:
Copy file name to clipboardexpand all lines: doc/gist.txt
+3-1
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,14 @@ NAME
6
6
SYNOPSIS
7
7
:CreateGist
8
8
:CreateGistFromFile
9
+
:ListGists
9
10
10
11
DESCRIPTION
11
12
The `:CreateGist` command creates a GitHub Gist from the buffer selection using the `gh` command-line tool.
12
13
The `:CreateGistFile` command creates a GitHub Gist from the current file using the `gh` command-line tool.
14
+
The `:ListGists` command lists all the GitHub Gists from your account and allows you to edit them directly inside neovim.
13
15
14
-
The plugin prompts you for a description and privacy settings for the Gist, and then copies the URL of the created Gist to the system clipboard.
16
+
The plugin prompts you for a description and privacy settings for the Gist creation, and then copies the URL of the created Gist to the system clipboard.
15
17
16
18
OPTIONS
17
19
<description> You can provide description for the Gist as an argument to the command. If you don't provide a description, the plugin will prompt you for one.
0 commit comments