Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 364 Bytes

shell_completion.md

File metadata and controls

16 lines (11 loc) · 364 Bytes

Shell completion

To enable tab completion for the gdk command in Bash, add the following to your ~/.bash_profile:

source ~/path/to/your/gdk/support/completions/gdk.bash

For Zsh, you can enable Bash completion support in your ~/.zshrc:

autoload bashcompinit
bashcompinit

source ~/path/to/your/gdk/support/completions/gdk.bash