summary refs log tree commit diff
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* 45055: Clarify _files documentationdana2019-12-201-3/+6
|
* 45073: regex-replace docs: Simplify grammar (avoid a double negative, state ↵Daniel Shahaf2019-12-181-3/+4
| | | | defaults first).
* 45035: be explicit about the need for a # in colours specified as hex tripletsOliver Kiddle2019-12-161-4/+4
|
* 45009: POSIX_CD needs to suppress some forms of option.Peter Stephenson2019-12-122-1/+4
| | | | | Otherwise forms of argument allowed by POSIX are interpreted as options instead.
* 44981: Fix some typos in the documentation.Martijn Dekker2019-12-047-8/+8
|
* 44964: zshmisc(1): Document APPEND_CREATE under the append redirection ↵Daniel Shahaf2019-12-031-4/+4
| | | | operators, >> and >>!.
* unposted: _values: Use the formal parameter's name in the docstring.Daniel Shahaf2019-11-081-1/+1
|
* github #37: Make it easier to understand what "fc -e" does.Ned Batchelder2019-09-041-2/+2
|
* Copy functions using functions -c old new.Peter Stephenson2019-08-031-1/+10
| | | | Documentation and test.
* 44495: Mention coproc under $!Bart Schaefer2019-07-081-1/+1
|
* 44480: Don't automatically close externally visible file descroptors.Peter Stephenson2019-07-023-4/+9
| | | | | | | | | | These are descriptors marked FDT_EXTERNAL. Make all sysopen'ed file descriptors FDT_EXTERNAL. Make =(...) call closem() consistent with other substitutions. Document file descriptors are left open.
* 44435: Handling digita arguments for :h and :t.Peter Stephenson2019-06-201-6/+23
| | | | | | | Pick number of leading or trailing path components to substitute. Active in history, brace parameters, glob qualifiers. Add tests for all three environments.
* 44387, edited: describe some problems with restricted modeStephane Chazelas2019-06-061-0/+45
|
* 44364: refer to zsh base manual page in zsh allJim2019-05-281-0/+3
|
* 44275: Fix compset -p/-s multibyte inconsistency and documentationdana2019-05-081-2/+2
|
* 44274: allow finer control of completion match soring with compadd's -o optionOliver Kiddle2019-05-072-26/+49
|
* 44198: Add cd_silent option to suppress all cd outputdana2019-04-121-0/+15
|
* 44215: Maintain LASTWIDGET across reset-prompt.Roman Perepelitsa2019-04-101-1/+4
| | | | This avoids side effects of asynchronous notifications.
* 44202 (tweaked): _normal: Add -P to reset precommandsMatthew Martin2019-04-041-2/+7
|
* 44200 (tweaked): Completion: Append to precommands in _normalMatthew Martin2019-04-041-4/+11
|
* 44156 (tweaked): zsh/system: Add note about potential flock side-effectsClinton Bunch2019-03-221-2/+5
| | | | (Minor adjustments to wording and formatting)
* 44153: rm: Accept -R as equivalent to -rMatthew Martin2019-03-211-7/+7
|
* Update doc from previous commit.Peter Stephenson2019-03-191-3/+3
| | | | | | Make it clear it's commands whose names begin with a / that aren't hashed. Obviously commands whose paths begin with a / are OK, duh.
* 44132: don't hash commands beginning with /Charles Blake2019-03-191-0/+4
|
* 44135: Add chmod builtinMatthew Martin2019-03-181-0/+20
|
* 44100: zparseopts: Add -F option, completion, tests; improve documentationdana2019-03-121-12/+40
| | | | | | | * Enable zparseopts to perform basic usage validation (aborting on an unrecognised option-like parameter) * Officially document the resolution of ambiguous option specs
* 44011: Only use fg_start_code for non-truecolorMikael Magnusson2019-01-231-2/+4
| | | | The sequence for truecolor uses a different prefix from palette colors
* users/23829: add and coument file-split-chars stylePeter Stephenson2019-01-081-0/+10
|
* 43945 (tweaked to remove test failure, noted in test):Martijn Dekker2018-12-301-0/+2
| | | | | Fix exit statuses from wait for POSIX_BUILTINS mode. Also add tests.
* 43944: apply NO_UNSET consistently to arithmeitcMartijn Dekker2018-12-301-1/+3
|
* 43904 (plus tweak): zshmisc(1): document term being optional if `in word' is ↵Joey Pabalinas2018-12-171-3/+6
| | | | | | | | | | | | | | | | | | | | omitted In code such as: > hobbes% () { for arg do print -r $arg; done; } 1 2 3 > 1 > 2 > 3 the implicit positional parameters added when the `in word ...' list is omitted also implicitly append the separator term, making the above code valid, albeit seemingly violating the syntax listed in the documentation. This is related to the various forms of alternative syntax and is the intended behavior of the parsing code, so correct the minor contradiction in the for loop documentation.
* 43620: More care documenting command substitution including $(<...)Peter Stephenson2018-11-141-3/+10
|
* 43800: Add nanosecond support to strftime built-indana2018-11-131-2/+6
|
* 43788: clarify zpty -w -n with no string argumentPeter Stephenson2018-11-071-1/+2
|
* 43760: add documentation for true colour changes and nearcolor moduleOliver Kiddle2018-11-053-3/+50
|
* 43694: More detail on multios.Peter Stephenson2018-10-171-3/+10
| | | | Mention how opening files in multios differs from cat.
* 43692: Generate man pages in the build dir, rather than the source dir.Daniel Shahaf2018-10-161-6/+6
| | | | | | | | | | | | | The following files are still generated in the source dir (in out-of-tree builds): Doc/Zsh/manmodmenu.yo Doc/Zsh/modlist.yo Doc/Zsh/modmenu.yo Doc/version.yo Doc/zsh.idx Doc/zsh.texi META-FAQ
* 43672: Document result of redirecting from a non-existent filedana2018-10-151-0/+1
|
* 43602: Clarify behaviour of `compdef -p`dana2018-10-101-1/+5
|
* 43620 (tweaked): vcs_info git: Reverse the order patches are passed to ↵Daniel Shahaf2018-10-081-1/+1
| | | | | | | | gen-unapplied-string in. This is an incompatible change; see README for details. Tweaks (relative to posted version): tweaked README, removed scalpel (debug print).
* unposted: doc tweak for helpfilesPeter Stephenson2018-10-081-1/+2
|
* 43616: Various parameter setting and display fixes.Peter Stephenson2018-10-081-10/+20
| | | | | | Mostly to do with typeset -p and tied variables and their interaction. Some general tied variable fixes.
* unposted: Fix typoDaniel Shahaf2018-10-021-1/+1
|
* 43563: zshzle: Clarify sentence in introduction.Daniel Shahaf2018-09-271-3/+3
|
* 43528: zshbuiltins(1): Document 'which''s "not found is not an error" behaviour.Daniel Shahaf2018-09-251-0/+6
|
* unposted: Fix trivial formatting error in docsdana2018-09-161-1/+1
|
* 43404 (after 43392): Fix 'make install' in out-of-tree buildsDaniel Shahaf2018-09-071-3/+3
|
* 43392: dist: Generate doc/help/* and doc/help.txt in builddir rather than ↵Daniel Shahaf2018-09-061-4/+3
| | | | | | | | | srcdir. Fixes creating tarballs in out-of-tree builds. While here, remove the instruction to build zsh before building a tarball, since that's unneeded.
* unposted: docs: Fix duplicated words in _combination.Daniel Shahaf2018-08-211-2/+2
|
* 43294: Add ZLE_RECURSIVE parameter.Peter Stephenson2018-08-171-0/+7
|