5b73c0aed4- Backport zsh-ab4d62eb975a4c4c51dd35822665050e2ddc6918.patch and zsh-4c89849c98172c951a9def3690e8647dae76308f.patch and add autoconf to build requirements to make the package build with GCC 14. [boo#1225958]
devel
Paolo Perego
2024-07-16 08:59:21 +00:00
505177d58a- Stop sourcing /etc/bash.bashrc which causes problems with ls, add a call to manually source /etc/zsh.zshrc.local if available.
Ismail Dönmez
2020-04-08 06:08:52 +00:00
dd5bd851bf- Update to version 5.8~pre2 (5.7.1-test-2) - Drop 1baf0d1f553631ecb641e98f4bf48bc2a44e5b82.patch, fixed upstream.
Ismail Dönmez
2019-12-22 09:27:57 +00:00
f3bbddc76d- Add 1baf0d1f553631ecb641e98f4bf48bc2a44e5b82.patch to fix a re-entrancy problem.
Ismail Dönmez
2019-12-16 15:11:39 +00:00
9393f4e3c9* The zsh/zutil module's zparseopts builtin learnt an -F option to abort parsing when an unrecognised option-like parameter is encountered. * The zsh/files module gained a chmod builtin. * Several changes have been made to the way completion functions track 'precommands' (such as command and env) and determine whether the command being completed for is a shell builtin. Developers of completion functions may wish to familiarise themselves with _normal -p and _pick_variant -b. * The option CD_SILENT was added to suppress all output from cd (whether explicit or implicit with AUTO_CD). It is disabled by default. * The compadd builtin's -o option now takes an optional argument to specify the order of completion matches. This affects the display of candidate matches and the order in which they are selected when cycling between them using menu completion. * The :h and :t modifiers in parameter expansion (if braces are present), glob qualifiers and history expansion may take following decimal digit arguments in order to keep that many leading or trailing path components instead of the defaults of all but one (:h) and one (:t). In an absolute path the leading '/' counts as one component. * The functions builtin gained a -c option to efficiently copy functions. - See included ChangeLog for the complete list of changes.
Ismail Dönmez
2019-12-16 10:20:48 +00:00
07bfbf59a6- Update to version 5.8~pre1 (5.7.1-test-1) * Please see the included NEWS for new functionality
Ismail Dönmez
2019-12-16 10:14:36 +00:00
2f7c74765cAccepting request 671123 from shells
Stephan Kulow
2019-02-04 20:10:56 +00:00
9ea12975be- Update to version 5.7.1 * This release contains fixes for the two regressions reported with VCS_Info and prompt colour sequences.
Ismail Dönmez
2019-02-04 13:22:29 +00:00
f33be28c7bAccepting request 668614 from home:namtrac:branches:shells
Ismail Dönmez
2019-01-28 11:07:38 +00:00
f2f0b6e2a1- Update to zsh 5.3 * Unicode9 support, this needs support from your terminal to work correctly. * The new word modifier ':P' computes the physical path of the argument. * The output of "typeset -p" uses "export" commands or the "-g" option for parameters that are not local to the current scope. * vi-repeat-change can repeat user-defined widgets if the widget calls zle -f vichange. * The parameter $registers now makes the contents of vi register buffers available to user-defined widgets. * New vi-up-case and vi-down-case builtin widgets bound to gU/gu (or U/u in visual mode) for doing case conversion. * A new select-word-match function provides vim-style text objects with configurable word boundaries using the existing match-words-by-style mechanism. * Support for the conditional expression [[ -v var ]] to test if a variable is set for compatibility with other shells. * The print and printf builtins have a new option -v to assign the output to a variable. * New x: syntax in completion match specifications make it possible to disable match specifications hardcoded in completion functions. - Re-add custom zshrc and zshenv to unbreak compatibility with old usage (boo#998858).
Ismail Dönmez
2016-12-14 10:01:58 +00:00
3005b0dc9f- Update to version 5.2 * The new module zsh/param/private can be loaded to allow the shell to define parameters that are private to a function scope (i.e. are not propagated to nested functions called within this function). * The GLOB_STAR_SHORT option allows the pattern **/* to be shortened to just ** if no / follows. so **.c searches recursively for a file whose name has the suffix ".c". * The effect of the WARN_CREATE_GLOBAL option has been significantly extended, so expect it to cause additional warning messages about parameters created globally within function scope.
Ismail Dönmez
2015-12-03 08:49:34 +00:00
033e276da2- Update to version 5.1 * The print builtin has new options -x and -X to expand tabs. * Several new command completions and numerous updates to others. * Options to "fc" to segregate internal and shared history. * All emulations including "sh" use multibyte by default; several repairs to multibyte handling. * ZLE supports "bracketed paste" mode to avoid interpreting pasted newlines as accept-line. Pastes can be highlighted for visibility and to make it more obvious whether accept-line has occurred. * Improved (though still not perfect) POSIX compatibility for getopts builtin when POSIX_BUILTINS is set. * New setopt APPEND_CREATE for POSIX-compatible NO_CLOBBER behavior. * Completion of date values now displays in a calendar format when the complist module is available. Controllable by zstyle. * New parameter UNDO_LIMIT_NO for more control over ZLE undo repeat. * Several repairs/improvements to the contributed narrow-to-region ZLE function. * Many changes to child-process and signal handling to eliminate race conditions and avoid deadlocks on descriptor and memory management. * New builtin sysopen in zsh/system module for detailed control of file descriptor modes. - Remove printf-regress.patch, upstream.
Ismail Dönmez
2015-09-01 06:45:51 +00:00
0afed6c75bAccepting request 312924 from shells
Stephan Kulow
2015-07-05 15:57:05 +00:00
587e1a1960- Add printf-regress.patch to fix a printf regression boo#934175
Ismail Dönmez
2015-06-14 12:58:35 +00:00
287e3e9a71* Global aliases can be created for syntactic tokens such as command separators (";", "&", "|", "&&", "||"), redirection operators, etc. * There have been various further improvements to builtin handling with the POSIX_BUILTINS option (off by default) for compatibility with the POSIX standard. * 'whence -v' is now more informative, and 'whence -S' shows you how a full chain of symbolic links resolves to a command. * The 'p' parameter flag now allows an argument to be specified as a reference to a variable, e.g. ${(ps.$sep.)foo} to split $foo on a string given by $sep. * The option FORCE_FLOAT now forces variables, not just constants, to floating point in arithmetic expressions. * The type of an assignment in arithmetic expressions, e.g. the type seen by the variable res in $(( res = a = b )), is now more logical and C-like. * The default binding of 'u' in vi command mode has changed to undo multiple changes when invoked repeatedly. '^R' is now bound to redo changes. To revert to toggling of the last edit use: bindkey -a u vi-undo-change * Compatibility with Vim has been improved for vi editing mode. Most notably, Vim style text objects are supported and the region can be manipulated with vi commands in the same manner as Vim's visual mode. * Elements of the watch variable may now be patterns. * The logic for retrying history locking has been improved.
Ismail Dönmez
2015-06-01 08:10:13 +00:00
c020b1259e- Update to version 5.0.8 - Remove gcc5-fix.patch, fixed upstream.
Ismail Dönmez
2015-05-31 19:26:04 +00:00