diff options
Diffstat (limited to 'Completion/Zsh')
-rw-r--r-- | Completion/Zsh/Command/_bindkey | 2 | ||||
-rw-r--r-- | Completion/Zsh/Command/_hash | 2 | ||||
-rw-r--r-- | Completion/Zsh/Command/_which | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Completion/Zsh/Command/_bindkey b/Completion/Zsh/Command/_bindkey index 433005cb9..045cba960 100644 --- a/Completion/Zsh/Command/_bindkey +++ b/Completion/Zsh/Command/_bindkey @@ -21,7 +21,7 @@ _arguments -C -s -S \ '(-e -v -a -M -l -d -A -N -m -p -r -s -R *)-D[delete named keymaps]:*:keymap:->keymap' \ '(-e -v -a -M -l -L -d -D -N -m -p -r -s -R *)-A[create alias to keymap]:old-keymap:->keymap:new-keymap:->keymap' \ '(-e -v -a -M -l -L -d -D -A -m -p -r -s -R *)-N[create new keymap]:new-keymap:->keymap:old-keymap to copy:->keymap' \ - '(-l -L -d -D -A -N -p -r -s -r -R *)-m[add builtin meta-key bindings to selected keymape]' \ + '(-l -L -d -D -A -N -p -r -s -r -R *)-m[add builtin meta-key bindings to selected keymap]' \ '(-e -v -a -d -D -A -N -m -s -R *)-p[list bindings which have given key sequence as a prefix]:key sequence' \ '(-l -L -d -D -A -N -m -s *)-r[unbind specified in-strings]:*:in-string' \ '(-l -L -d -D -A -N -m -p -r *)-s[bind each in-string to each out-string]:*:key string' \ diff --git a/Completion/Zsh/Command/_hash b/Completion/Zsh/Command/_hash index 4b2a8a6ca..a065615ef 100644 --- a/Completion/Zsh/Command/_hash +++ b/Completion/Zsh/Command/_hash @@ -12,7 +12,7 @@ case ${service} in _arguments -C -s -S \ '(-f -m -v)-r[empty hash table]' \ '(-f -r)-m[treat arguments as patterns]' \ - '(-f -r -m)-v[list entires as they are added]' \ + '(-f -r -m)-v[list entries as they are added]' \ '(-f -r -v)-L[list in the form of calls to hash]' \ "${common_args[@]}" \ '(-d -f -r -m -v -L)*:hash:->hashval' && return 0 diff --git a/Completion/Zsh/Command/_which b/Completion/Zsh/Command/_which index ab6caeba7..279475451 100644 --- a/Completion/Zsh/Command/_which +++ b/Completion/Zsh/Command/_which @@ -9,7 +9,7 @@ cargs=( \ '-s[print symlink free path as well]' \ '*:commands:->command' ) farg='-f[output contents of functions]' -aarg='-a[print all occurences in path]' +aarg='-a[print all occurrences in path]' case ${service} in whence) |