diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Completion/Builtins/_zstyle | 4 | ||||
-rw-r--r-- | Completion/Core/_path_files | 2 | ||||
-rw-r--r-- | Doc/Zsh/compsys.yo | 4 |
4 files changed, 11 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog index 1994cdc94..1d577fac0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2000-10-12 Sven Wischnowsky <wischnow@zsh.org> + + * 12954, 12973: Completion/Builtins/_zstyle, + Completion/Core/_path_files, Doc/Zsh/compsys.yo: rename fake style + to fake-files + 2000-10-11 Andrej Borsenkow <Andrej.Borsenkow@mow.siemens.ru> * 12958: Cosmo <cosmo@informix.com>: aczsh.m4: fix for NCR compiler diff --git a/Completion/Builtins/_zstyle b/Completion/Builtins/_zstyle index f62a3b150..536f962b7 100644 --- a/Completion/Builtins/_zstyle +++ b/Completion/Builtins/_zstyle @@ -25,7 +25,7 @@ styles=( disable-stat c:bool domains c: expand c: - fake c:fake + fake-files c:fake-files fake-parameters c:fake-params file-patterns c:filepat file-sort c:fsort @@ -268,7 +268,7 @@ while [[ -n $state ]]; do compadd - menu single longer ;; - fake) + fake-files) _message 'prefix and names' ;; diff --git a/Completion/Core/_path_files b/Completion/Core/_path_files index 256478515..5133ef2b2 100644 --- a/Completion/Core/_path_files +++ b/Completion/Core/_path_files @@ -142,7 +142,7 @@ zstyle -s ":completion:${curcontext}:paths" special-dirs sdirs sopt=$sopt/ zstyle -a ":completion:${curcontext}:files" accept-exact accex -zstyle -a ":completion:${curcontext}:files" fake fake +zstyle -a ":completion:${curcontext}:files" fake-files fake zstyle -s ":completion:${curcontext}:files" ignore-parents ignpar diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo index 0b1e9fda3..256cbf894 100644 --- a/Doc/Zsh/compsys.yo +++ b/Doc/Zsh/compsys.yo @@ -1012,8 +1012,8 @@ generated this way (e.g. due to the option tt(AUTO_MENU) being set), this will also cycle through the names of the files in pathname components after the first ambiguous one. ) -kindex(fake, completion style) -item(tt(fake))( +kindex(fake-files, completion style) +item(tt(fake-files))( Currently, this style is only used when completing files and looked up with the tag tt(files). Its values are of the form `var(dir)tt(:)var(names...)'. This will add the var(names) (strings |