about summary refs log tree commit diff
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
...
* zsh-users/19551: history documentation.Peter Stephenson2014-12-172-1/+9
| | | | | Note in a couple of places that history file reading and writing is only done in interactive shells.
* 33956: document key binding changes and remove ^X bindingOliver Kiddle2014-12-131-8/+8
|
* 33950: ignore KEYTIMEOUT for vi operatorsOliver Kiddle2014-12-121-0/+7
|
* 33876: etc.: Separate errors and keyboards interruptsPeter Stephenson2014-12-111-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Combination of 12 commits from interrupt_abort branch. Basic strategy is to introduce bits to errflag and to set and reset them separately. Remove interrupt status on return to main keymap. Turn off ERRFLAG_INT for always block. Restore bit thereafter: we probably need a new variable in order to allow user interrupts to be reset in the always block. Add TRY_BLOCK_INTERRUPT This works the same as TRY_BLOCK_ERROR, but for a SIGINT, too. Ensure propagation of SIGINT from exited job. If received by foreground job, shell uses ERRFLAG_INT, not ERRFLAG_ERROR, to set the new state. Reset errflag before precmd() Add always block in _main_completion to fix ZLS_COLORS Ensures we get the right state of $ZLS_COLORS at the end of _main_complete even if there's an interrupt. However, the "right state" is a bit messy as it depends on styles.
* 33924: allow vi line/characterwise mode to be forcedOliver Kiddle2014-12-081-2/+6
|
* 33883: documentation for (*) glob qualifierDaniel Shahaf2014-12-071-1/+1
|
* 33841: explain array append a bit betterBarton E. Schaefer2014-12-041-9/+15
|
* Unposted: minor change: "scalar or integer" to "scalar" to include floats.Barton E. Schaefer2014-12-041-2/+1
|
* 33830: META-FAQ updates.Peter Stephenson2014-12-011-4/+4
| | | | | | Don't mention CVS. Use correct sourceforge URL.
* 33139: add doc example to glob broken symbolic links.Simon Ruderich2014-11-281-0/+4
|
* 33805: rewrite zshparams intro, tweak formattingBarton E. Schaefer2014-11-271-33/+72
| | | | | I noticed that there was no explanation of the terms "variable" or "environment" anywhere.
* 33793: add 0b binary interpretation to integer constantsPeter Stephenson2014-11-261-1/+2
|
* 33746: read -q doc refers to -tDaniel Hahler2014-11-241-4/+4
|
* 33740: FAQ: another way of avoiding MULTIOs effects on pipesStephane Chazelas2014-11-231-0/+3
|
* 33763 (cf. Baptiste Daroussin 33747): fix nested item list in generated ↵Barton E. Schaefer2014-11-221-0/+1
| | | | zshmodules.1
* add menu reference to Text ObjectsBarton E. Schaefer2014-11-211-0/+1
|
* 33730: vim style text objects for selecting wordsOliver Kiddle2014-11-211-1/+45
|
* 33679: Note on patter s in case statementsPeter Stephenson2014-11-191-1/+5
| | | | They work exactly like groups in other patterns, despite contrary indications.
* 33704: keybindings, documentation, tests and minorOliver Kiddle2014-11-171-3/+35
| | | | fixes for vim style visual selection changes
* 33700: new widget for put in vim style visual selection modeOliver Kiddle2014-11-171-0/+7
|
* 33697: new vim style vi-backward-word-end widgetsOliver Kiddle2014-11-151-0/+9
|
* 33696: simple up/down line widgets that don't go through history linesOliver Kiddle2014-11-151-0/+8
|
* AUTO_CD behaviour depends on SHIN_STDIN, documentPeter Stephenson2014-11-111-0/+4
|
* 33643: elaborate documentation of the PRIVILEGED optionOliver Kiddle2014-11-091-4/+16
|
* 33570, 33576: make killring/yank-pop work in vi mode afterOliver Kiddle2014-10-301-1/+1
| | | | vi-put-before and vi-put-after
* 33531 with additions: retain status of exited background jobs.Peter Stephenson2014-10-262-4/+20
| | | | | | | | Add linked list of unwaited-for background jobs. Truncate at value of _SC_CHILD_MAX discarding oldest. Remove old lastpid_status mechanism for latest exited process only. Slightly tighten safety of permanently allocated linked lists so that this doesn't compromise signal handling.
* 33518: add support for "_ vi buffer and arguments to vi-set-buffer from a ↵Oliver Kiddle2014-10-231-13/+23
| | | | zle widget
* 33423: expand ${(p)...} to allow ${(ps.$param.)...}Peter Stephenson2014-10-121-0/+13
|
* Fix some typos in the documentationMikael Magnusson2014-10-037-15/+15
|
* 33323: fix bug in removing math functions and complete -M option to functionsOliver Kiddle2014-10-021-1/+1
|
* 33319: fix parens in example from 33312Barton E. Schaefer2014-10-011-1/+1
|
* 33312: document redirections applied to function definitionsPeter Stephenson2014-10-012-0/+23
|
* 33209: allow dummy zsh.texi if yodl not available.Tanu Kaskinen2014-09-201-2/+4
| | | | Removes catastrophic make failure so rest of make can finish.
* 33206: fix compdescribe docBarton E. Schaefer2014-09-191-6/+6
|
* users/19097: remove $functypetrace in favour of ref to $zsheval_contextPeter Stephenson2014-09-181-13/+9
|
* 33184: vcs_info git: consider patches for rebaseMarc Finet2014-09-161-7/+7
| | | | | | | | Since a rebase contains a list of patches to re-apply, re-use the facility for stgit to have the same mechanism. The patch list given to the gen-{un,}applied-string hooks is an array with the sha1 and the subject of the commit. On rebase merge, the applied patches prior to current contains only a number and "?".
* 33136: P glob qual appends words when negatedMikael Magnusson2014-09-161-0/+6
|
* Add $functypestack special parameter in zsh/parameterPeter Stephenson2014-09-121-1/+13
|
* clarify ${(~j.|.)array} exampleBarton E. Schaefer2014-09-061-4/+5
|
* 33110: document use of $IFS[0] for variable paddingPeter Stephenson2014-09-041-0/+4
|
* 33091: improve documentation for ttyctlPeter Stephenson2014-09-041-3/+15
|
* 33070: add %(e..) based on %eBarton E. Schaefer2014-08-301-0/+1
|
* 33057: %e in prompts shows evaluation / execution depthPeter Stephenson2014-08-291-0/+6
|
* 33047: use git to simplify massively source distribution file selectionPeter Stephenson2014-08-233-77/+1
|
* 32997: new utility function for separated listsOliver Kiddle2014-08-141-0/+13
|
* 33002: tcp_expect -P pm tags matches with a stringPeter Stephenson2014-08-141-2/+11
|
* 32975, 32984: texi2html.conf location inconsistent in makefileAxel Beckert2014-08-121-3/+3
|
* unposted: Fix typo in Doc/Zsh/expn.yoAxel Beckert2014-08-101-1/+1
|
* mention 32971 in NEWS, clarify RPROMPT behavior in docsBarton E. Schaefer2014-08-081-3/+5
|
* 32971: negative argument with %(l..) and with %<< or %>> calculates space ↵Barton E. Schaefer2014-08-071-6/+23
| | | | available before right margin