about summary refs log tree commit diff
path: root/Doc/Zsh/params.yo
Commit message (Collapse)AuthorAgeFilesLines
* 45661: docs: Clarify the effect of KSH_ARRAYS on the (I) subscript.dg17272020-04-121-0/+4
|
* unposted: docs: Fix a cross-reference.Daniel Shahaf2020-01-161-1/+1
|
* 44981: Fix some typos in the documentation.Martijn Dekker2019-12-041-1/+1
|
* 44495: Mention coproc under $!Bart Schaefer2019-07-081-1/+1
|
* Document REPORTMEMORY is in Kb, not MbPeter Stephenson2018-02-131-2/+2
|
* 41924: (wi) subscript flag interactiondana2018-01-191-2/+4
|
* add millisecond and microsecond options to TIMEFMT variabledana2017-12-141-2/+4
|
* 41787 (plus minor tweaks): use $FUNCSTACK for function nesting depth.Peter Stephenson2017-10-021-0/+10
| | | | Initialised from existing configuration value.
* 41764 (test tweaked): allow [key]+=value when modifying arraysPeter Stephenson2017-09-271-4/+13
|
* 41755: Followup to last: minor clarification to docs.Daniel Shahaf2017-09-241-1/+1
|
* Updates for ksh array element syntax.Peter Stephenson2017-09-241-5/+18
| | | | | | | | Move detection of key/value pairs down into prefork(). Detect normal array assignment and [key]=val array assignemnt separately. Mark key / value pairs with Marker and pass up flag. Deal with marked triads specially later on.
* 41731: reformat and expand doc for 41698.Barton E. Schaefer2017-09-201-11/+24
| | | | Also add missing x-seq reference for 41705 in ChangeLog.
* unposted: nodref -> noderefPeter Stephenson2017-09-151-1/+1
|
* More [key]=value tweaksPeter Stephenson2017-09-141-3/+6
| | | | | | Some rephrasings. Update typeset -p for associative arrays to use new syntax.
* unposted: typo in doc just committedPeter Stephenson2017-09-131-1/+1
|
* First go at var=([key]=value) syntax.Peter Stephenson2017-09-131-1/+26
| | | | | | | Works for both normal and typeset case, also var+=... Still to do: allow to be mixed with straight array assignment, improve typeset -p, implement [key]+=value.
* 41510: update doc for $ZSH_PATCHLEVELPeter Stephenson2017-08-081-2/+2
|
* 39900: Add TERMINFO_DIRS special like TERMINFO.Guillaume Maudoux2016-11-201-4/+14
| | | | Although this is a colon-separated array there is no tied array.
* 39985: Document the [nyae] answers to the spelling correction prompt, $SPROMPT.Daniel Shahaf2016-11-201-0/+8
|
* 39507: TMPSUFFIX for =(...)Barton E. Schaefer2016-09-291-0/+9
|
* 39167: Make $ENV handling more like POSIXTeubel György2016-09-051-1/+2
|
* unposted: fix pareentheses in man for getrusage()Peter Stephenson2016-06-161-2/+2
|
* users/21632: Use of REPORTMEMORY variablePeter Stephenson2016-06-131-0/+14
| | | | | | If the child's resisdent set size in megabytes exceeds this, print out the resource (TIMEFMT) string. Document you need to add memory usage to this by hand.
* 38086: shuffle init code to localize a global, add $ZSH_ARGZERO, refine ↵Greg Klanderman2016-03-061-7/+12
| | | | | | $ZSH_SCRIPT (also a couple of ChangeLog typos corrected -- Bart)
* 37895: $ZSH_SCRIPT is POSIX $0 but always availblePeter Stephenson2016-02-071-0/+7
|
* 37294: Add ZSH_EXECUTION_STRING.Peter Stephenson2015-12-041-0/+5
| | | | This shows the argument to shell option -c.
* unposted: describe separators between values in array assignmentPeter Stephenson2015-11-191-0/+5
|
* 37127: document indexing of $signalsPeter Stephenson2015-11-171-1/+7
|
* unposted: a few cosmetic format fixes in docsJun-ichi Takimoto2015-11-131-3/+1
|
* unposted: Minor documentation tweaks.Daniel Shahaf2015-09-051-1/+1
|
* 35896: index zle_highlightBarton E. Schaefer2015-07-241-0/+6
|
* 35474, 35492: support the bracketed paste mode of newer terminal emulatorsOliver Kiddle2015-06-191-0/+17
|
* 35110: don't implicitly initialize restricted integers to zeroPeter Stephenson2015-05-141-0/+18
|
* 35075: improve manual formatJun-ichi Takimoto2015-05-121-1/+1
| | | | also fixed a ChangeLog entry for 35034 (2015-05-06)
* 35034: improve manual format up to Chapter18Jun-ichi Takimoto2015-05-061-6/+6
|
* 34769: incorrect doc of process time calculationHan Pingtian2015-03-251-1/+1
|
* users/19985: improve doc of subscripting substrings furtherPeter Stephenson2015-03-101-1/+11
|
* 34657: document the effect of substring subscripting betterPeter Stephenson2015-03-061-1/+11
|
* users/19934: document %D{...} for WATCHFMTBarton E. Schaefer2015-02-281-0/+6
|
* users/19850: add pattern support to watch variablePeter Stephenson2015-02-111-1/+13
|
* users/19800: more help for $HISTORY_IGNOREPeter Stephenson2015-02-031-4/+19
|
* 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.
* 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
|
* 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.
* Fix some typos in the documentationMikael Magnusson2014-10-031-1/+1
|
* Attempt to improve doc for assignmentPeter Stephenson2014-07-081-2/+8
|
* 32634: add POSIX_ARGZERO optionBarton E. Schaefer2014-06-011-3/+5
|
* 32592: add CORRECT_IGNORE_FILE variableTomoki Sekiyama2014-04-291-0/+8
|
* 32521: document that LOGNAME comes from getlogin()Peter Stephenson2014-04-061-1/+3
|