You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

68 lines
2.1 KiB

fpath=("${ZSH_FOLDER}completion" $fpath)
# Make completion work
autoload -U compinit
autoload bashcompinit
bashcompinit
zstyle ':completion:*' menu select
## Auto complete with case insenstivity and allowing some characters to be
#forgotten at the start like a .
zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
# Completion style
zstyle ':completion:*:matches' group 'yes'
zstyle ':completion:*:options' description 'yes'
zstyle ':completion:*:options' auto-description 'Specify %d'
zstyle ':completion:*:corrections' format ' %F{green}-- %d (errors: %e) --%f'
zstyle ':completion:*:descriptions' format ' %F{yellow}-- %d --%f'
zstyle ':completion:*:messages' format ' %F{purple} -- %d --%f'
zstyle ':completion:*:warnings' format ' %F{red}-- no matches found --%f'
zstyle ':completion:*:default' list-prompt '%S%M matches%s'
zstyle ':completion:*' format ' %F{yellow}-- %d --%f'
zstyle ':completion:*' group-name ''
zstyle ':completion:*' verbose yes
# Improve tab completion for encrypt and decrypt funcitons
zstyle ':completion:*:decrypt:*' file-patterns '*.(pgp|gpg)'
zstyle ':completion:*:encrypt:*' ignored-patterns '*.(pgp|gpg)'
zstyle ':completion:*:reportGenerator:*' file-patterns '*.(json)'
# OPENAPI
zstyle -e ':completion:*' urls '[ -n "$OPENAPI" ] && [ -f "$OPENAPI" ] && reply=( $(openapi -j "$OPENAPI" urls) )'
export LISTMAX=-1
zmodload zsh/complist
compinit
#
# Use vim keys in tab complete menu: (thanks Luke Smith: https://github.com/LukeSmithxyz/voidrice/)
bindkey -M menuselect 'h' vi-backward-char
bindkey -M menuselect 'k' vi-up-line-or-history
bindkey -M menuselect 'l' vi-forward-char
bindkey -M menuselect 'j' vi-down-line-or-history
bindkey -v '^?' backward-delete-char
compdef sshrc=ssh
# Vim completion
compdef v=vim
compdef vi=vim
compdef https=http
# Include hidden files in autocomplete:
_comp_options+=(globdots)
function _aliased_with_prefix() {
shift words
(( CURRENT-- ))
_normal
}
compdef _aliased_with_prefix grc
compdef _aliased_with_prefix sudo
#source "$ZSH_FOLDER/plugins/fzf-tab/fzf-tab.zsh"