SnippetKit

Autocompletion

Enable autocompletion so that the SnippetKit CLI automatically completes your commands.

Enable autocompletion for the Snippetkit CLI

Enable autocompletion so that the Snippetkit CLI automatically completes your commands. Use the snippetkit completion command to enable autocompletion so that the snippetkit CLI automatically completes your commands. After you enable autocomplete, you can type a command and press the tab key on your keyboard to view available commands and flags.

Setup with ZSH on macOS and Linux

Open a new ZSH shell and run the following commands:

snippetkit completion
mkdir -p ~/.snippetkit
mv snippetkit-completion.zsh ~/.snippetkit

Add the following lines to your .zshrc file:

# The next lines enables shell command completion for snippetkit
fpath=(~/.snippetkit $fpath)
autoload -Uz compinit && compinit -i

Setup with Bash on macOS and Linux

Follow the instructions in bash-completion to set up bash completions.

Open a new Bash shell and run the following commands:

snippetkit completion
mkdir -p ~/.snippetkit
mv snippetkit-completion.bash ~/.snippetkit

Add the following lines to your .bashrc file:

# The next line enables shell command completion for snippetkit
source ~/.snippetkit/snippetkit-completion.bash

Windows

Windows autocompletion is currently not supported.

On this page