summaryrefslogtreecommitdiff
path: root/Doc/Zsh
AgeCommit message (Collapse)AuthorFilesLines
2019-04-1044215: Maintain LASTWIDGET across reset-prompt.Roman Perepelitsa1-1/+4
This avoids side effects of asynchronous notifications.
2019-04-0444202 (tweaked): _normal: Add -P to reset precommandsMatthew Martin1-2/+7
2019-04-0444200 (tweaked): Completion: Append to precommands in _normalMatthew Martin1-4/+11
2019-03-2244156 (tweaked): zsh/system: Add note about potential flock side-effectsClinton Bunch1-2/+5
(Minor adjustments to wording and formatting)
2019-03-2144153: rm: Accept -R as equivalent to -rMatthew Martin1-7/+7
2019-03-19Update doc from previous commit.Peter Stephenson1-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.
2019-03-1944132: don't hash commands beginning with /Charles Blake1-0/+4
2019-03-1844135: Add chmod builtinMatthew Martin1-0/+20
2019-03-1244100: zparseopts: Add -F option, completion, tests; improve documentationdana1-12/+40
* Enable zparseopts to perform basic usage validation (aborting on an unrecognised option-like parameter) * Officially document the resolution of ambiguous option specs
2019-01-2344011: Only use fg_start_code for non-truecolorMikael Magnusson1-2/+4
The sequence for truecolor uses a different prefix from palette colors
2019-01-08users/23829: add and coument file-split-chars stylePeter Stephenson1-0/+10
2018-12-3043945 (tweaked to remove test failure, noted in test):Martijn Dekker1-0/+2
Fix exit statuses from wait for POSIX_BUILTINS mode. Also add tests.
2018-12-3043944: apply NO_UNSET consistently to arithmeitcMartijn Dekker1-1/+3
2018-12-1743904 (plus tweak): zshmisc(1): document term being optional if `in word' is ↵Joey Pabalinas1-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.
2018-11-1443620: More care documenting command substitution including $(<...)Peter Stephenson1-3/+10
2018-11-1343800: Add nanosecond support to strftime built-indana1-2/+6
2018-11-0743788: clarify zpty -w -n with no string argumentPeter Stephenson1-1/+2
2018-11-0543760: add documentation for true colour changes and nearcolor moduleOliver Kiddle2-2/+48
2018-10-1743694: More detail on multios.Peter Stephenson1-3/+10
Mention how opening files in multios differs from cat.
2018-10-1543672: Document result of redirecting from a non-existent filedana1-0/+1
2018-10-1043602: Clarify behaviour of `compdef -p`dana1-1/+5
2018-10-0843620 (tweaked): vcs_info git: Reverse the order patches are passed to ↵Daniel Shahaf1-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).
2018-10-08unposted: doc tweak for helpfilesPeter Stephenson1-1/+2
2018-10-0843616: Various parameter setting and display fixes.Peter Stephenson1-10/+20
Mostly to do with typeset -p and tied variables and their interaction. Some general tied variable fixes.
2018-10-02unposted: Fix typoDaniel Shahaf1-1/+1
2018-09-2743563: zshzle: Clarify sentence in introduction.Daniel Shahaf1-3/+3
2018-09-2543528: zshbuiltins(1): Document 'which''s "not found is not an error" behaviour.Daniel Shahaf1-0/+6
2018-09-16unposted: Fix trivial formatting error in docsdana1-1/+1
2018-08-21unposted: docs: Fix duplicated words in _combination.Daniel Shahaf1-2/+2
2018-08-1743294: Add ZLE_RECURSIVE parameter.Peter Stephenson1-0/+7
2018-08-1343275: Add log2 to match funcdana1-3/+3
2018-07-17Update distro docs to remove dead linksMatthew Martin3-37/+18
2018-07-1743176: Add note on compatibility to start of manual.Peter Stephenson1-2/+7
Default mode is not POSIX.
2018-07-1643172: document escaping colon in zformat -aTim Smith1-0/+1
2018-06-2543084: Variable warning suppression enhancements.Peter Stephenson1-2/+4
Add vared -g option along the lines of typeset -g. Set reply safely in zsh_directory_name_cdr.
2018-06-2043075: Support nanosecond-precision time formattingdana2-5/+13
* Teach ztrftime() %9. and %N for nanoseconds * Update prompt expansion to pass sub-second times for time formatting * Update zsh/stat to pass sub-second times for atime/mtime/ctime Patch heavily based on Oliver's earlier work @ workers/24059
2018-06-15users/23472: Add $sysparams[procsubstpid] to zsh/systemPeter Stephenson1-0/+5
2018-05-1742790: make [[:blank:]] match non-ASCII blanksStephane Chazelas1-1/+1
2018-02-2642399: document echo and behaviour of - and --Peter Stephenson1-0/+9
2018-02-13Document REPORTMEMORY is in Kb, not MbPeter Stephenson1-2/+2
2018-01-1941924: (wi) subscript flag interactiondana1-2/+4
2018-01-13unposted: Follow-up to previous: Clarify that ${histchars[1]} may be ↵Barton E. Schaefer1-2/+1
backslash-escaped even when it isn't '!'.
2018-01-1342261: docs: Expand documentation of $histchars[1]. Joint with Matthew Martin.Daniel Shahaf2-5/+9
2017-12-2842175 + 42177 + 42178: avoid localized output from external commandsJun-ichi Takimoto1-2/+26
_call_program and '_arguments --' will call _comp_locale before calling external command for easier analysis of the output. This is disabled by passing an option '-l'.
2017-12-2242156: new CHECK_RUNNING_JOBS option demanded by bash groupiesPeter Stephenson1-2/+15
Also new job options. Also suppress debug error if rows or columns are reported as zero as this is normal without a physical terminal.
2017-12-14add millisecond and microsecond options to TIMEFMT variabledana1-2/+4
2017-11-2442031 + 42048: Make [[ -o invalidoption ]] a normal(ish) false value, rather ↵Daniel Shahaf2-0/+7
than a syntax error.
2017-11-13github #19: Fix minor typo in INC_APPEND_HISTORY documentationChris Bracken1-1/+1
2017-11-1142004: fix parentheses in documentationMartijn Dekker1-1/+1
2017-10-3041939: docs: Move aliases corner case to the dangerous bends section. (after ↵Daniel Shahaf1-3/+4
41482)