More completion transfers

This commit is contained in:
Anthony Cicchetti 2019-10-17 08:55:45 -04:00
parent bfd92b9eeb
commit 7452b50502
2 changed files with 11 additions and 8 deletions

11
zsh/completions/_just Normal file
View file

@ -0,0 +1,11 @@
#compdef just
function _just() {
local -a cmdlist
for entry in $(just --summary); do
cmdlist+="${entry}"
done
_describe 'Just options' cmdlist
}
_just "$@"

View file

@ -1,5 +1,4 @@
# Lines configured by zsh-newuser-install
# zmodload zsh/zprof
HISTFILE=~/.histfile
HISTSIZE=10000
@ -73,11 +72,6 @@ compctl -K _send_to_pane send-to-pane
# the following lines sourced from the fzf distribution files
export FZF_TMUX=1
function _just() {
reply=($(just --summary))
}
compctl -K _just just menu-complete
export PATH="$PATH:$HOME/.anyenv/bin"
eval "$(anyenv init -)"
export PATH="$(yarn global bin):$PATH"
@ -92,5 +86,3 @@ else
printf "No zshsrc\nOne has been created\n"
touch $HOME/.zshsrc
fi
# zprof