summaryrefslogtreecommitdiff
path: root/Doc/Zsh
AgeCommit message (Collapse)AuthorFilesLines
2017-07-04Delay processing "disown" for superjob.Peter Stephenson1-0/+6
This is a job forked from the current shell when a job partly running from the current shell was suspended. When all associated processes started from the main shell are finished the job is continued and at this point the disown can complete.
2017-06-1341275: Leave stdin open when executing widgetsStephane Chazelas1-6/+6
2017-06-1241244: Add zmodload -s option.Peter Stephenson1-5/+8
Doesn't complain if module is unavailable, but prints more obscure errors. Use existing low-level silent flag by passing through intermediate module loading hierarchy.
2017-05-28unposted: clarify ZLS_COLORS pattern matching contextsBarton E. Schaefer1-1/+4
2017-05-2241128: typo in compsys documentationJörg Sommer1-1/+1
2017-05-19users/22707: Document extra use of accept-exact-dirsPeter Stephenson1-3/+10
It allows completion after magically appearing directories that dont't show up in the parent directory by supressing searching of the parent directory if the subdirectory is directly found to exist.
2017-04-05users/22653: options.yo: Clarify REMATCH_PCRE semantics.Daniel Shahaf1-1/+2
Presently, if the option is set but the module is unavailable, using '=~' sets errflag.
2017-04-01unposted: minor formatting: var() instead of tt().Barton E. Schaefer1-2/+2
2017-03-2740906: Add note on use of (k) parameter subst flag.Peter Stephenson1-1/+3
KSH_ARRAYS generlly requires [*] or [@] to operate on the whole array and this is true here.
2017-03-2140875: Update REC_EXACT description, suggested by Martin KrafftPeter Stephenson1-2/+3
2017-03-20unposted (after 40859): Fix yodl warning:Daniel Shahaf1-1/+1
makeinfo ./zsh.texi ./zsh.texi:36246: Next field of node `vcs_info Examples' not pointed to (perhaps incorrect sectioning?). ./zsh.texi:36419: This node (Prompt Themes) has the bad Prev. Seen with yodl 3.00.00 but not with 3.04.00.
2017-03-1940859: vcs_info docs: Use proper internal links through texinfo nodes.Daniel Shahaf1-19/+46
Changes: - Add texinode()'s - Replace 'see foo' with 'see noderef(foo)' Drive-by changes: - Fix one reference to a nonexistent "Styles" section - (minor) Fix whitespace around "once"
2017-03-18unposted: vcs_info quilt: Fix documentation markup typo.Daniel Shahaf1-1/+1
2017-03-1440822: vcs_info quilt: Document the '.quilt-foo' zstyle context element. ↵Daniel Shahaf1-5/+16
(Compare users/20807.)
2017-03-1240816: Document interaction of 'print -P' and 'print -f'.Daniel Shahaf1-0/+3
2017-03-0840744: Document the SHORT_LOOPS 'function' syntax.Daniel Shahaf1-0/+3
It's already mentioned in passing in zshoptions(1).
2017-03-0540726: add "zcurses resize" for sane terminal size changeSebastian Gniazdowski1-1/+17
2017-03-0340702: new KEYS_QUEUED_COUNT ZLE variablePeter Stephenson1-1/+8
2017-03-0140622 with typos fixed: functions -Ms.Peter Stephenson1-1/+15
This adds the capability for mathematical functions based on shell functions to have a string argument. Module functions have had this for a long time.
2017-02-2840641: docs: patterns: Add '|' to the overview. Clarify that it short-circuits.Daniel Shahaf2-0/+4
2017-02-2540640: the (A) parameter flag forces array result even if assignment syntax ↵Barton E. Schaefer1-2/+12
is not used
2017-02-23unposted (cf. 40617): clarify description of ${(A)name=value} and ↵Barton E. Schaefer1-5/+5
${(AA)name=value}
2017-02-1740568: REMATCH_PCRE is not enabled by default, fix doc.Øystein Walle1-1/+1
2017-02-1740558, 40562: General improvements to zsh/db/gdbm moduleSebastian Gniazdowski1-0/+11
2017-02-1340537: Document previous change to autoloadPeter Stephenson1-1/+4
2017-02-0940492: vcs_info: Escape '%' signs in payloads.Daniel Shahaf1-0/+17
Test case: a patch whose subject is '%Sfoo%sbar'. ('S' and 's' are expandos both in prompts and in the 'formats' style.)
2017-02-04unposted: vcs_info git: Fix typo in manual.Daniel Shahaf1-2/+2
2017-02-0340476: vcs_info $backend_misc: Document at the right point, provide in quilt ↵Daniel Shahaf1-3/+3
'standalone' mode.
2017-01-2840440: Add $functions_source hash to zsh/parameter.Peter Stephenson1-1/+28
This allows you to find out where a function was loaded from.
2017-01-2540396: vcs_info quilt: More documentation of '%Q' and 'use-quilt'.Daniel Shahaf1-0/+15
2017-01-2340391: Add WARN_NESTED_VAR option and functions -W.Peter Stephenson2-5/+41
These are companions to WARN_CREATED_GLOBAL, warning when a variable from an enclosing scope is altered.
2017-01-1140321: _arguments option groupsOliver Kiddle1-35/+46
2017-01-11Add features associated with autoloading a function using an absolutePeter Stephenson1-11/+44
path. -d defaults to normal fpath -r remembers the path without actually loading. May be combined with -d. -R does the same but it's an error if not found -X can now take a directory path: this is used to output not yet loaded functions that have an associated path.
2017-01-1040306 with doc tweaks: Change behaviour expanding alias in () function ↵Peter Stephenson1-0/+30
definition. Now an error unless the () is part of the same error as the name. Add ALIAS_FUNC_DEF option to allow it again.
2017-01-1040318 (in part): Document echo \c behaviour.Phil Pennock1-1/+1
2016-12-0940137: document _external_pwdsOliver Kiddle1-0/+9
2016-12-09Document (E) parameter flag better.Peter Stephenson1-1/+2
It produces 1 more than any other use of an index for the end of a match, helpfully.
2016-12-0940117: Revert a hunk of 40035 that changed semantics incorrectly.Daniel Shahaf1-2/+2
2016-11-2940035: Cosmetic fixes for comments and documentation.Eitan Adler3-4/+4
Mostly fixes to doubled words.
2016-11-2440003: include "0-"9 vi buffers in the registers associative arrayOliver Kiddle1-1/+1
2016-11-2039986, 39989: improve handling of vi-repeat-changeOliver Kiddle1-0/+7
Save previous vi change and throw away a new change that fails. Add zle -f vichange to allow shell widget to be a single change. Fix repeat of command where numeric arguments were multiplied.
2016-11-2039900: Add TERMINFO_DIRS special like TERMINFO.Guillaume Maudoux1-4/+14
Although this is a colon-separated array there is no tied array.
2016-11-2039978: more accurate doc for finding job by stringMikel Ward1-2/+2
2016-11-2039985: Document the [nyae] answers to the spelling correction prompt, $SPROMPT.Daniel Shahaf1-0/+8
2016-11-1739952: add registers special parameter to provide access to the vi register ↵Oliver Kiddle1-0/+6
buffers from a zle widget function
2016-11-1339929: clarify execute{,-last}-named-cmdBarton E. Schaefer1-3/+8
2016-11-0939882: mention ${name:/pattern/replacement} in the itemized synopsis with ↵Barton E. Schaefer1-5/+7
the related forms; clarify doc.
2016-11-07zsh-users/22083: attempt to explain what a word is in parameter substitution.Peter Stephenson1-0/+12
2016-11-0539389: when printf -v is used with an array use separate elements each time ↵Oliver Kiddle1-1/+3
the format is reused
2016-11-04users/22080: bracketed-paste: Third time's a charm.Daniel Shahaf1-4/+6
vi-set-buffer: Eliminate the sole use of the term "register".