@@ -33,7 +33,7 @@ def _install(self, args):
3333 print ("python -m pip install shtab" )
3434 print ("\n # Generate static bash completion for 'struct':" )
3535 print ("mkdir -p ~/.local/share/bash-completion/completions" )
36- print ("struct --print-completion bash > ~/.local/share/bash-completion/completions/struct" )
36+ print ("structkit --print-completion bash > ~/.local/share/bash-completion/completions/struct" )
3737 print ("\n # Apply now (or open a new shell):" )
3838 print ("source ~/.bashrc" )
3939
@@ -42,7 +42,7 @@ def _install(self, args):
4242 print ("python -m pip install shtab" )
4343 print ("\n # Generate static zsh completion for 'struct':" )
4444 print ("mkdir -p ~/.zfunc" )
45- print ("struct --print-completion zsh > ~/.zfunc/_struct" )
45+ print ("structkit --print-completion zsh > ~/.zfunc/_struct" )
4646 print ("\n # Ensure zsh loads user functions/completions (append to ~/.zshrc if needed):" )
4747 print ('echo "fpath=(~/.zfunc $fpath)" >> ~/.zshrc' )
4848 print ('echo "autoload -U compinit && compinit" >> ~/.zshrc' )
@@ -54,12 +54,12 @@ def _install(self, args):
5454 print ("python -m pip install shtab" )
5555 print ("\n # Generate static fish completion for 'struct':" )
5656 print ('mkdir -p ~/.config/fish/completions' )
57- print ('struct --print-completion fish > ~/.config/fish/completions/struct.fish' )
57+ print ('structkit --print-completion fish > ~/.config/fish/completions/struct.fish' )
5858 print ("\n # Apply now:" )
5959 print ("fish -c 'source ~/.config/fish/completions/struct.fish'" )
6060
6161 else :
6262 self .logger .error (f"Unsupported shell: { shell } . Supported: { ', ' .join (SUPPORTED_SHELLS )} " )
6363 return
6464
65- print ("\n Tip: You can also print completion directly via: struct --print-completion <shell>" )
65+ print ("\n Tip: You can also print completion directly via: structkit --print-completion <shell>" )
0 commit comments