A gist powered CLI snippet retriever.
Save a snippet as a gist in GitHub, retrieve the snippet on the command line.
- GitHub account (duh!)
- GitHub access token with the
gist
scope enabled
Download the binary compatible with your system from here.
Before you can use Snpt you will need to sync your gists:
snpt sync
If this is the first time you have synced your gists you will be prompted to input a GitHub access token (you will need create this in your GitHub account). This token should be be created with the gist
scope enabled.
The sync command will download all of your public and private gists and store them locally for fast retrieval by Snpt.
snpt cp [snippetID]
snippetID
is an optional parameter. If a snippetID
is not supplied a prompt will be displayed allowing you to choose a snippet to copy to the clipboard.
snpt write [snippetID]
snippetID
is an optional parameter. If a snippetID
is not supplied a prompt will be displayed allowing you to choose a snippet to create a file from. The created file will be named after the name of the gist file.
snpt print [snippetID]
snippetID
is an optional parameter. If a snippetID
is not supplied a prompt will be displayed allowing you to choose a snippet to print to the screen.
snpt ls
This can be useful for searching for a specific snippet:
snpt ls | grep <query>
snpt token
This command will prompt you to input a new GitHub access token.
You can view help for a command by passing the -h
flag when running a command:
snpt sync -h
Snpt ❤️ fzf
snpt ls | fzf | snpt cp
Speed this up by creating aliases for common usages:
alias cs="snpt ls | fzf | snpt cp" # cs for copy snippet
alias ws="snpt ls | fzf | snpt write" # ws for write snippet
snpt cp
and snpt write
both accept stdin
as an input. If stdin
is detected Snpt will try and extract a snippet ID from it. This is how the above fzf
usage works.
The Snpt Alfred Workflow provides quick access to your snippets from Alfred.
If you want bash completion for Snpt, download the file bash_completion
to your preferred bash completion location (i.e ~/bash_completion/snpt
) and make sure you source this file in your ~/.bashrc
or equivalent:
source "$HOME/bash_completion/snpt"
To uninstall Snpt from your system you will need to manually delete the Snpt binary.
Snpt's configuration and gist cache is located at ~/.snpt
. You can safely remove this directory and its contents once you have removed the Snpt binary.