diff options
-rw-r--r-- | Completion/Commands/_expand_word | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Completion/Commands/_expand_word b/Completion/Commands/_expand_word deleted file mode 100644 index 48ce87ede..000000000 --- a/Completion/Commands/_expand_word +++ /dev/null @@ -1,15 +0,0 @@ -#compdef -K _expand_word complete-word \C-xe _list_expansions list-choices \C-xd - -# Simple completion front-end implementing expansion. - -setopt localoptions ${_comp_options[@]} - -local curcontext="$curcontext" - -if [[ -z "$curcontext" ]]; then - curcontext="expand-word:::" -else - curcontext="expand-word:${curcontext#*:}" -fi - -_main_complete _expand |