summaryrefslogtreecommitdiff
path: root/shells/zsh-current
AgeCommit message (Collapse)AuthorFilesLines
2007-11-07Add support for pcre to options.mk if ZSH_STATIC is undefined. Bump rev.bjs2-2/+15
2007-10-01Fix embedded paths to /bin/env and /usr/local/bin/zsh. Reported by joerg.uebayasi1-1/+24
2007-09-21Fix build when ZSH_STATIC=yes; from Kouichirou Hiratsuka.uebayasi2-5/+5
2007-09-21Oops - forgot to re-run make mps after fixing RCS Id of patches/patch-??uebayasi1-6/+6
files. Pointed out by Hiratsuka-san.
2007-09-21Update zsh-current to 4.3.4.uebayasi8-23/+124
Several fixes of multi-byte character support. Patch from Chris Ross, thanks.
2007-08-07Fix DESTDIR-handling for zsh-current by ensuring that the destdir-supportjlam1-3/+1
line is defined before bsd.prefs.mk is included.
2006-04-07List the info files directly in the PLIST and honor PKG{INFO,MAN}DIR.jlam3-16/+3
2006-03-18A missing file in PLIST; bump revision to 4.3.2p1.uebayasi2-2/+5
2006-03-11Re-add development release of Zsh, 4.3.2, first public release of 4.3.xuebayasi13-0/+809
branch. Major changes between versions 4.2 and 4.3 ------------------------------------------ - There is support for multibyte character sets in the line editor, though not the main shell. See Multibyte Character Support in INSTALL. - The shell can now run an installation function for a new user (one with no .zshrc, .zshenv, .zprofile or .zlogin file) without any additional setting up by the administrator. - The manual now has a Roadmap section (manual page zshroadmap) to give new users an indication of the most interesting parts of the manual. - New option PROMPT_SP, on by default, to work around the problem that the line editor can overwrite output with no newline at the end. - New option HIST_SAVE_BY_COPY (on by default): history is saved by copying and renaming instead of directly overwriting. - New redirection syntax e.g. {myfd}>file opens a new file descriptor and stores the number in $myfd, so that >&$myfd will work. Chosen not to break existing code (and to be compatible with proposals for the Korn shell). - Substitutions of the form ${var:-"$@"}, ${var:+"$@"} and similar where word-splitting is applied to the text after the :- or :+ (in particular, where the SH_WORD_SPLIT option is in effect for compatibility) now behave as in other Bourne- and POSIX-compatible shells when in the appropriate emulation mode. - New Posix-style zsh-specific tests [[:IDENT:]], [[:IFS:]], [[:IFSSPACE:]], [[:WORD:]] test if character can appear in identifier, is an IFS character, is an IFS whitespace character, or is considered as part of a word (is alphanumeric or appears in $WORDCHARS). Note the pattern code doesn't yet handle multibyte characters. - The idiom =(<<<...) is optimised so that the shell internally turns the ... into the contents of a file whose name is then substituted. - Supplied functions catch and throw provide limited support for exception handling using the `{ ... } always { ... }' syntax. - Signals now accept the SIG as part of the name for compatibility with other shells. - Editor function argument-base allows non-decimal arguments for editor widgets. - As always, there are many enhancements to completion functions.
2004-03-28Now that the cutting-edge 4.2.0 release goes in shells/zsh. No needuebayasi10-625/+0
to catch up with the development releases any more.
2004-03-10Remove info files entries from PLIST.seb1-2/+1
2003-08-05Convert to USE_NEW_TEXINFO.seb4-6/+17
Use INSTALL_TARGET to install info files: this gives a proper environment for USE_NEW_TEXINFO framework to work. Fix makeinfo invocation for zsh-current via patch file so that only _one_ info file is generated as PLIST seems to want it.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-29Share Makefile, update patch sum.uebayasi2-64/+5
2003-06-29Um, re-do previous.uebayasi2-0/+74
2003-06-29Add missings, nuke garbage...uebayasi1-4/+0
2003-06-29Initial import of Zsh 4.1.1 into the NetBSD Packages Collection.uebayasi8-0/+604
This is a development version of Zsh having more features than 4.0.x releases. New features between zsh versions 4.0 and 4.1.1 ----------------------------------------------- Configuration: - upgraded to use autoconf post-2.50 - improved compatibility with other shells through shell options, builtin arguments and improved builtin option parsing Syntax and builtins: - new printf builtin - `+=' to append to parameters which works for scalars, arrays and (with pairs) associative arrays. - enhanced multiple parameter `for' loops: for key value in key1 value1 key2 value2 ... maintaining full compatibility with POSIX syntax Add-on modules and functions: - zsh/net/tcp module provides builtin interface to TCP through ztcp builtin. Function suite for interactive and script use with expect-style pattern matching. - zsh/net/socket module provides zsocket builtin. - zcalc calculator function with full line editing. - builtin interface to pcre library - zsh/zselect module provides zselect builtin as interface to select system call Completion system: - general improvements to command and context support, low-level functions, display code. - in verbose mode, matches with the same description are grouped - highly configurable completions for values of specific parameters, specific redirections for specific commands - support for bash completion functions (typically zsh native functions are more powerful where available) - New completions provided for (some of these may be in later 4.0 releases): valgrind, tidy, texinfo, infocmp, Java classes, larch, limit, locale parameters, netcat, mysqldiff, mt, lsof, elinks, ant, debchange (dch), email addresses, file system types, Perforce, xsltproc. Line editor: - special parameters $PREDISPLAY, $POSTDISPLAY available in function widgets to configure uneditable text (for narrowing) - recursive editing - supplied widgets read-from-minibuffer, replace-string use these features (more intuitive prompting and argument reading than 4.0) - access to killed text via $CUTBUFFER and $killring - supplied highly configurable word widgets forward-word-match etc., can set what constitutes a word interactively or in startup script (implement bash-style behaviour, replacing previous bash-* word widgets) - interface to incremental search via $LASTSEARCH - better handling of keymaps in zle and widgets - better support for output from user-defined widgets while zle is active - tetris game which runs entirely in zle Local internal improvements: - disowned jobs are automatically restarted - \u and \U print escapes for Unicode - line numbers in error messages and $PS4 output are more consistent - `=prog' expands only paths, no longer aliases for consistency - job display in prompts; `jobs' command output can be piped - prompts: new $RPROMPT2, %^, %j, %y, enhanced %{, %}, %_. - rand48() function for better randomness in arithmetic (if the corresponding math library function is present) - $SECONDS parameter can be made floating point via `typeset -F SECONDS' for better timing accuracy - improvements to command line history mechanism - many bugfixes
2001-06-05zsh-current has been outdated by zsh4.jtb6-455/+0
2001-05-24Pass --no-split option to makeinfo. Reported to packages@netbsd.orgjtb2-1/+15
by Masao Uebayashi.
2001-05-18Initial import of zsh-current.jtb5-0/+441
Zsh is a UNIX command interpreter (shell) which of the standard shells most resembles the Korn shell (ksh), although it is not completely compatible. It includes enhancements of many types, notably in the command-line editor, options for customising its behaviour, filename globbing, features to make C-shell (csh) users feel more at home and extra features drawn from tcsh (another `custom' shell). Package provided in private mail by Masao Uebayashi <uebayasi@soum.co.jp> as a followup to pkg/12721.