diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2000-05-15 00:31:20 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2000-05-15 00:31:20 +0000 |
commit | 6ff206e057d46095bb21aa943c383bc76cd15036 (patch) | |
tree | 31fda7d1d727bae1121f088fe3d5392351b8fb4d /Completion | |
parent | 26cc1ad1dfb9ba4ffeaf6079762439822ab828ef (diff) | |
download | zsh-6ff206e057d46095bb21aa943c383bc76cd15036.tar.gz zsh-6ff206e057d46095bb21aa943c383bc76cd15036.tar.xz zsh-6ff206e057d46095bb21aa943c383bc76cd15036.zip |
Add -L option to the hash builtin
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Builtins/_hash | 1 | ||||
-rw-r--r-- | Completion/Builtins/_vars_eq | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Completion/Builtins/_hash b/Completion/Builtins/_hash index e748028fb..de8c1887c 100644 --- a/Completion/Builtins/_hash +++ b/Completion/Builtins/_hash @@ -13,6 +13,7 @@ case ${words[1]} in '(-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 -v)-L[list in the form of calls to hash]' \ "${common_args[@]}" \ '(-d -f -r -m -v)*:hash:->hashval' && return 0 ;; diff --git a/Completion/Builtins/_vars_eq b/Completion/Builtins/_vars_eq index e66600852..cda16307f 100644 --- a/Completion/Builtins/_vars_eq +++ b/Completion/Builtins/_vars_eq @@ -39,7 +39,7 @@ case ${words[1]} in use="Umtu" func=f ;; - integer) use="ghlrtux" ;; + integer) use="ghilrtux" ;; readonly) use="${use/r/}" ;; local) use="${use/f/}" ;& export) use="${${use/g/}/x/}" ;; |