summaryrefslogtreecommitdiff
path: root/Functions/Misc
AgeCommit message (Collapse)AuthorFilesLines
2018-10-1443685: add-zle-hook-widget: Support running under NO_UNSET ('set -u').Daniel Shahaf1-6/+6
2018-06-07users/23434: initialise UNDO_LIMIT_NO so that an initial undo doesn't clear ↵Oliver Kiddle1-2/+8
the whole edit buffer
2018-06-0542929 (tweaked): additional default bindings in zed.Sebastian Gniazdowski1-5/+26
Add to both zed and zed-vicmd keymaps.
2018-01-1941839: force IFS to default for "read"Sebastian Gniazdowski1-1/+1
2017-08-31Make mbegin, mend, match local in zed.Peter Stephenson1-0/+3
Needed for zstyle -m.
2017-06-0741232: Use page up/down keys in zed keymap.Sebastian Gniazdowski1-0/+23
Find with terminfo where available.
2017-03-2440892: subcommand matching for ip helpAaron Schrab1-2/+2
2016-12-0940126: zed (fned): When editing a new function. escape its name.Daniel Shahaf1-1/+1
Example: % unfunction \( % fned \(
2016-09-3039495: add-zle-hook-widget: Add end-of-options guard to hook invocation.Daniel Shahaf1-2/+2
Currently, the only special widget that takes arguments is zle-keymap-select.
2016-08-3039131: return on error needs to be at the outer scope.Barton E. Schaefer1-4/+4
2016-07-28unposted: Avoid $0 for POSIX_ARGZERO compatibility.Daniel Shahaf2-3/+3
2016-07-27unposted: Prefix function's name to its error messages.Daniel Shahaf1-2/+2
2016-07-17Relocate add-zle-hook-widget, everything else in Functions/Zle is a widget.Barton E. Schaefer1-0/+186
2016-07-0438783: zcalc tweaks for RPN mode.Peter Stephenson1-8/+18
Make it more straightforward to exchange variables with stack.
2016-06-2138737: clean up zcalc variables.Peter Stephenson1-142/+147
Undocumented variables now start with "_".
2016-06-2138736: various RPN mode enhancements for zcalcPeter Stephenson1-12/+66
2016-06-18unposted: zed needs localoptions noksharraysBarton E. Schaefer1-0/+2
2016-06-1638693: Add RPN mode to zcalcPeter Stephenson1-22/+114
2016-01-2837814: run-help-ip: use an absolute path for the shebang.Kamil Dudka1-1/+1
2015-12-19users/21082 (expanded): a more complete sorting of version strings that are ↵Barton E. Schaefer1-1/+19
not in the form of zsh version numbers; additional explanatory comment
2015-11-27unposted: ZCALCPROMPT created globally in zcalcPeter Stephenson1-1/+3
2015-11-16zed: Add -- to the `functions' builtin callsEric Cook1-2/+2
Reported on IRC: % autoload zed; zed -f -- "-zgen-prezto-load" zed:83: bad option: -g -zgen-prezto-load() { }
2015-10-3136993: zed: fix argument parsingEric Cook1-21/+10
2015-10-2937014: Improved internal parameter setting.Peter Stephenson1-0/+2
Enhance WARNCREATEGLOBAL to work in many more cases. Don't create REPLY as an integer if it didn't previously exist as one, even if the value to be set is integral, as this is likely to mess up later uses of REPLY.
2015-10-0136735: add ~/.zcalcrc handling to zcalcPeter Stephenson1-0/+4
2015-09-2336604: fix getopts+shift calculationBarton E. Schaefer1-1/+1
2015-07-2735937: wait for process IDs instead of job numbers in parallel modeBarton E. Schaefer1-2/+2
2015-07-2335815: fix for lack of startup output from newer nslookupOliver Kiddle1-2/+1
2015-06-0535386: expand tabs where useful in builtins outputing function.Peter Stephenson1-4/+13
Also add to zed -f. Option is -x <numm>.
2015-01-0930568: Add tetriscurses contrib function, port of tetris to zcursesMikael Magnusson1-0/+386
2014-11-1319371 plus tweak: run-help helper for ipArtur Penttinen1-0/+42
2014-08-2333047: use git to simplify massively source distribution file selectionPeter Stephenson1-32/+0
2014-04-0732527: zcalc-auto-insert key binding for use in zcalcPeter Stephenson1-0/+3
2014-03-0132453: fix zcalc default base handlingPeter Stephenson1-1/+1
2014-01-2332299: add use of underscores on arithmetic output for spacingPeter Stephenson1-1/+1
2013-11-2332031 plus missed _run_help: get helpfiles install path corect in functionsPeter Stephenson1-1/+1
2013-11-0831940: zcalc -e uses arguments as inputPeter Stephenson1-9/+27
2013-08-0731634: run-help compat with alias to noglob/nocorrectPhil Pennock1-0/+4
Given `alias fetch='noglob fetch'`, without this change `run-help fetch` recurses to invoke itself on the noglob command, bringing up the help for noglob. Similarly for nocorrect. Thus the user would have to quit out of the pager, then avoid quitting out of the loop, so that they can go into the second iteration and see the help for the second instance found by `whence -a`, which happens to be the target of the alias. With common pagers, that's thus 'q', 'not-q'. Somewhat frustrating. Without this change, `alias foo='noglob bar'` where `foo` is not otherwise a command would _never_ show the help for `bar`, since it only showed the help for `noglob` and there was no second line of whence output to trigger the second pass. With this change, aliases to `noglob|nocorrect` of a command somewhat ignore the presence of that precommand modifier; if a command is aliased to `noglob $itself`, then the result is that the first line of whence output is shown, no pager is used, the user can immediately see a prompt to continue and press something other-than-q to see the help for the command. If given `alias foo='noglob bar'` then `run-help foo` will immediately show the help for bar. This behaviour was chosen to be consistent with the existing alias support, but just working better with the precommand modifier.
2013-07-0331503: zmv improvements for user-specified programs.Peter Stephenson1-4/+11
-p splits words of commands passed to it. -P is like -p for when the program doesn't understand the -- convention
2013-03-1731155: minor extra zcalc features and documentationPeter Stephenson1-1/+10
2013-03-1531154: make zcalc understand continuation lines with a backslashPeter Stephenson1-1/+11
2013-03-05users/17666: zcalc -f sets FORCE_FLOATPeter Stephenson1-1/+4
2012-08-20Stepan Koltsov: 30634: use (q-) quotingPeter Stephenson1-1/+1
for zmv output for clarity.
2012-06-16users/17134: avoid bad math errorBart Schaefer1-1/+1
2012-04-1230388, 30389 (Stephane): zargs: handle zero-length arguments.Peter Stephenson1-8/+8
2012-03-01unposted (users/16697): use a better output file name when the DISPLAYBart Schaefer1-7/+8
variable refers to a socket file (MacOS); fix problem with writing the output file when the user overrides the default value of TERM.
2012-03-01unposted (30090): add -h (help) and -L (list extant hooks) options.Bart Schaefer1-5/+17
2011-08-1428852: Use syntax that doesn't depend on SHORT_LOOPS being set.Mikael Magnusson1-2/+2
2011-05-1929307, 29308 + replies: Fix some doubled words in docs and comments.Mikael Magnusson1-1/+1
2011-03-11users/15864: turn zsh_directory_name into a hookPeter Stephenson1-2/+5