I have a problem that I couldn't find a solution to (maybe I'm just a horrible google user).
Anyways: I use oh-my-zsh with a custom theme and one or two plugins, but nothing too fancy. Whenever I double-press tab to bring up the completion…
When you want to check out a git branch you can type git checkoutTAB to list the available branches:
$ git checkout feature-
feature-1 feature-2
How can I add additional info such as branch creator and updated ago to the list of autocompleted…
I build a huge zsh completion file for my program using clap_complete. To activate it, I added in my ~/.zshrc the lines:
fpath+=(~/.zsh/completion) # adding my completion directory to the fpath
compinit # running completion
However, the compinit…