42 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # Make completion work
 | |
| autoload -U compinit
 | |
| zstyle ':completion:*' menu select
 | |
| # Auto complete with case insenstivity
 | |
| zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
 | |
| 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
 | |
| 
 | |
| autoload bashcompinit
 | |
| bashcompinit
 | |
| _wp_complete() {
 | |
| 	local OLD_IFS="$IFS"
 | |
| 	local cur=${COMP_WORDS[COMP_CWORD]}
 | |
| 	IFS=$'\n';  # want to preserve spaces at the end
 | |
| 	local opts="$(wp cli completions --line="$COMP_LINE" --point="$COMP_POINT")"
 | |
| 	if [[ "$opts" =~ \<file\>\s* ]]
 | |
| 	then
 | |
| 		COMPREPLY=( $(compgen -f -- $cur) )
 | |
| 	elif [[ $opts = "" ]]
 | |
| 	then
 | |
| 		COMPREPLY=( $(compgen -f -- $cur) )
 | |
| 	else
 | |
| 		COMPREPLY=( ${opts[*]} )
 | |
| 	fi
 | |
| 	IFS="$OLD_IFS"
 | |
| 	return 0
 | |
| }
 | |
| complete -o nospace -F _wp_complete wp
 | |
| 
 | |
| # Include hidden files in autocomplete:
 | |
| _comp_options+=(globdots)
 | |
| 
 | |
| #source "$ZSH_FOLDER/plugins/fzf-tab/fzf-tab.zsh"
 |