PHP Classes

File: vendor/wp-cli/wp-cli/utils/wp-completion.bash

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Nolimitbuzz WP Theme   vendor/wp-cli/wp-cli/utils/wp-completion.bash   Download  
File: vendor/wp-cli/wp-cli/utils/wp-completion.bash
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Nolimitbuzz WP Theme
WordPress theme to used as start of new themes
Author: By
Last change:
Date: 4 days ago
Size: 495 bytes
 

Contents

Class file image Download
# bash completion for the `wp` command _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