about summary refs log tree commit diff
path: root/Completion/Zsh/Command/_zed
blob: 6b68fadf04bb774141a867ef2d5453129613d057 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#compdef zed fned

case $service in
(fned) _arguments -S : ':shell function:_functions';;
(zed) _arguments -S : \
	'(- 2):file:_files' \
	'(1):shell function:_functions' \
	'(1)-x+[specify spaces to use for indentation in function expansion]:spaces' \
	'(1)-f[edit function]';;
esac