about summary refs log tree commit diff
path: root/Completion/Base/Widget/_expand_word
blob: 48ce87ede08f0bf4714dabbed070ca056d7c811b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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