blob: e613f0696a73e11ec33ab20809800e7ceaf8de39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#compdef hm
## vim:ft=zsh
## hm completion
## Daniel Friesel <derf@derf.homelinux.org>
## https://derf.homelinux.org/~derf/dotfiles/zsh/completions/_hm
## see also: https://derf.homelinux.org/~derf/code/h
local arguments
arguments=(
'(-r)-g[grm instead of hm]'
'(-g)-r[hrm instead of hm]'
'-u[use unicode]'
)
_arguments -s $arguments
|