1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-28 15:01:21 +02:00

unposted: update NEWS with path-completion style

This commit is contained in:
Peter Stephenson 2010-04-15 09:26:37 +00:00
parent d4bf6fcb84
commit df9cf1bf31
2 changed files with 18 additions and 6 deletions

@ -1,3 +1,7 @@
2010-04-15 Peter Stephenson <pws@csr.com>
* unposted: NEWS: update to include path-completion.
2010-04-15 Frank Terbeck <ft@bewatermyfriend.org>
* 27798: Alexey I. Froloff: Completion/Unix/Command/_git: support
@ -13027,5 +13031,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.4957 $
* $Revision: 1.4958 $
*****************************************************

18
NEWS

@ -16,11 +16,19 @@ The glob qualifier P can be used to add a separate word before each
match. For example, *(P:-f:) produces the command line
`-f file1 -f file2 ...'.
The module zsh/system has a new "zsystem" builtin whose subcommands
perform system level tasks. Currently "zsystem flock" performs
advisory file locking. This is a particularly convenient way
of locking files for the length of a subshell. "zsystem supports flock"
provides a test for this feature.
The module zsh/system has a new "zsystem" builtin whose subcommands perform
system level tasks. Currently "zsystem flock" performs advisory file
locking (for aficionados, this uses the fcntl() system call so works over
the network on Linux). This is a particularly convenient way of locking
files for the length of a subshell. "zsystem supports flock" provides a
test for this feature.
The completion system now has a style path-completion. Setting this to
false inhibits completion of paths before the current path component,
e.g. /u/b/z no longer completes to /usr/bin/zsh. This is useful on systems
where this form of completion is pathologically slow due to network
performance.
Changes between versions 4.3.9 and 4.3.10
-----------------------------------------