Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
65 lines (41 loc) · 1.51 KB

File metadata and controls

65 lines (41 loc) · 1.51 KB
Copy raw file
Download raw file
Outline
Edit and raw actions

Autocompletion

This guide describes how you can enable command autocompletion for the STACKIT CLI by leveraging the functionality provided the Cobra framework.

The process may vary depending on the type of shell you are using and your operating system (OS).

You will need to start a new shell for the setup to take effect.

bash

This process depends on the bash-completion package. If you don't have it installed already, you can install it via your OS's package manager.

Linux

stackit completion bash > ~/.bash_completion

macOS

stackit completion bash > $(brew --prefix)/etc/bash_completion.d/stackit

zsh

If shell completion is not already enabled in your environment you will need to enable it by executing the following once:

echo "autoload -U compinit; compinit" >> ~/.zshrc

Linux

stackit completion zsh > "${fpath[1]}/_stackit"

macOS

stackit completion zsh > $(brew --prefix)/share/zsh/site-functions/_stackit

Additionally, you might also need to run:

source $(brew --prefix)/share/zsh/site-functions/_stackit >> ~/.zshrc

PowerShell

You can load completions for your current shell session by running:

stackit completion powershell | Out-String | Invoke-Expression

To load completions for every new session, add the output of the above command to your PowerShell profile.

fish

stackit completion fish > ~/.config/fish/completions/stackit.fish
Morty Proxy This is a proxified and sanitized view of the page, visit original site.