summaryrefslogtreecommitdiff
path: root/Doc/Zsh/contrib.yo
AgeCommit message (Collapse)AuthorFilesLines
2025-04-2853527: remove zgetoptdana1-79/+0
reverts most of 84ef0c523, 0e369f37d, and 9b68cf38f feature was not ready. may be re-added after 5.10 release
2025-04-27unposted: document zparseopts's lack of support for abbreviating long optionsdana1-1/+2
per workers/53520
2025-04-27unposted: docs: adjust zgetopt wordingdana1-7/+7
per workers/53518
2025-04-2753516: add zgetopt contrib functiondana1-0/+78
2024-03-13unposted: update doc for "colors" for workers/47489,50212 (italic and bright)Bart Schaefer1-2/+6
2024-03-0552641: incarg: add a backward variant and make it repeatablemidchildan1-3/+5
2024-02-1552523: fixes to preceding incarg patchmidchildan1-2/+3
2024-02-1552520: add new features and improvements to the "incarg" ZLE widgetmidchildan1-6/+24
- Decrement integers without defining a new widget - Preserve the number of leading zeros - Increment binaries, octals, and hexadecimals - Move the cursor to the end of the incremented integer - Create a sequence of integers across terminal panes - Add a Vim variant - Also add tests
2024-01-0552465: use NULL_GLOB when expanding zmv input pattern to avoid NOMATCH exitBart Schaefer1-4/+4
2023-10-1752222: Document bracketed-paste-url-magicMikael Magnusson1-0/+27
2023-08-2752028: improvements to _shadow / _unshadow, plus helper and docBart Schaefer1-0/+21
2022-09-2550648: Use $ZCALC_HISTORY where appropriateJulian Prein1-2/+5
2022-02-22unposted: Fix some typos and markup.Daniel Shahaf1-2/+2
2022-02-2049727 (+ comment): vcs_info quilt: Pass the patches dir path to the ↵Daniel Shahaf1-0/+15
gen-applied-string, gen-unapplied-string, and set-patch-format hooks I use that in my gen-applied-string hook.
2022-01-27unposted: vcs_info quilt docs: Fix misspelled style nameDaniel Shahaf1-1/+1
2021-11-2649448: docs: Fix pointers to the `Widgets', `User-defined Widgets', and ↵Daniel Shahaf1-1/+1
`Standard Widgets' sections. The latter two didn't have their own texinode()s. Various places, both those sections' subsections and elsewhere in the manual, linked to the first section rather than to the third. For instance, zshcontrib(1) pointed to "noderef(Miscellaneous) in noderef(Zle Widgets)", even though the former (currently §18.6.6) is not under the latter (currently §18.4). Add texinode()s and fix those pointers.
2021-11-2649445: docs: Clean up some subsection references.Daniel Shahaf1-3/+3
2021-09-26unposted: Fix typosDaniel Shahaf1-1/+1
2021-09-0645180: clarify doc for POSIX EREs, fix an issue with PCRE when the ↵Stephane Chazelas1-1/+4
replacement was empty or generated more than one element
2021-06-1349065: remove bad cross-referenceBart Schaefer1-3/+2
2021-05-1648853: improved handling of theme resets when changing prompt themes, ↵Marlon Richert1-4/+6
especially for theme preview
2021-05-1548710: histed + other zed updatesBart Schaefer1-2/+19
2021-05-1548707: fix keymap handling when zed invokes read-from-minibuffer; update docBart Schaefer1-10/+11
2021-04-2048435 (tweaked): vcs_info docs: applied-string/unapplied-string: Correct an ↵Daniel Shahaf1-3/+12
omission in the documentation and add an example. The example code is a reduced version of my function from workers/47519, with one bug fixed. (In workers/47519, if $1 doesn't contain spaces - which is the case under hg mq - then $H and $s will be set to the same value.) Tweaked: Extended the contrib.yo hunk with details about mq.
2021-04-1545583/0008: vcs_info git: Use best practices in an exampleDaniel Shahaf1-1/+1
The alias was vulnerable to SHORT_LOOPS syntax, not invokable from scripts, etc..
2021-04-1545583/0007: vcs_info docs: vcs_info_lastmsg: Correct an ambiguous/wrong ↵Daniel Shahaf1-1/+1
description.
2021-04-1545583/0006: vcs_info docs: Change user-context name in an example, to avoid ↵Daniel Shahaf1-2/+2
confusion with the special-casing of the value `command' in vcs_info_lastmsg.
2021-04-1545583/0005: vcs_info docs: Recommend use of prompt expandos rather than ↵Daniel Shahaf1-1/+13
terminal escape sequences.
2021-04-1545583/0003: docs: Fix rendering in the man page outputDaniel Shahaf1-2/+2
In the man page output, the text was underlined from the var() to the end of the paragraph. The texi output in affected. For instance, the text `name' in TeX is now slanted Roman (\slshape\rmfamily) rather than slanted teletype (\slshape\ttfamily).
2021-04-1545583/0002 (tweaked): docs: Fix rendering of an example in the man page outputDaniel Shahaf1-0/+2
The texi output was unaffected. However, in the man page on my system, everything after the example() was underlined and not indented.
2021-02-1647830: Fix some documentation typosLawrence Velázquez1-2/+2
2020-12-1147731 (+unposted): add run-help assistant for btrfsJun-ichi Takimoto1-6/+9
also fix format errors in contrib.yo
2020-10-1847468: Doc/Zsh/contrib.yo: Fix typoAxel Beckert1-1/+1
2020-08-1647306: edit-command-line: add editor styleMikael Magnusson1-0/+6
2020-07-1346240: Make the expansion of manref()() in ztexi.yo match its expansion in ↵Daniel Shahaf1-2/+3
zman.yo. The difference was mostly harmless in the common case "(see manref(foo)(42))", which expanded to "(see man page foo(42))" under ztexi.yo, but in other contexts the ztexi.yo expansion was was nonsensical; for example: "the BSD manref(echo)(1) command" "the string returned by the manref(getlogin)(3) system call" "advisory file locking (via the manref(fcntl)(2) system call)" "this is the exact opposite from manref(ls)(1)," While there, copyedit some uses of manref()().
2020-06-2746072 + 46136: Add the 'zle $widget -f nolast' syntax, to improve ↵Daniel Shahaf1-1/+1
add-zle-hook-widget support for multiple hook functions. See workers/46004 for the use-case.
2020-06-26unposted: docs: Fix some markup and typos.Daniel Shahaf1-2/+2
2020-06-2246091: Add code to Mercurial VCS backend to show topic if there is any.Manuel Jacob1-1/+2
"Topics" is an experimental concept in Mercurial that augments the current branching concept (called "named branches"). For more information, see the not always up-to-date Mercurial Wiki page https://www.mercurial-scm.org/wiki/TopicPlan.
2020-03-1545540: vcs_info git: In non-interactive rebases, compute patch names for ↵Daniel Shahaf1-2/+2
unapplied patches.
2020-01-11users/24628 (fixed): More doc for selectw-word-style widgets.Peter Stephenson1-1/+14
Add example of how to add a new binding for a widget that fixes a particular word behaviour using styles.
2020-01-02unposted (after 45183): Fix yodl error: "contrib.yo:4457: No macro: back(...)".Daniel Shahaf1-1/+1
2020-01-0145183: Improve documentation examplesStephane Chazelas1-9/+13
2019-12-2245113: vcs_info docs: Clarify documentation of the %p/%u/%a patch-format ↵Daniel Shahaf1-3/+3
expandos.
2019-12-1845073: regex-replace docs: Simplify grammar (avoid a double negative, state ↵Daniel Shahaf1-3/+4
defaults first).
2019-12-0444981: Fix some typos in the documentation.Martijn Dekker1-1/+1
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-02unposted: Fix typoDaniel Shahaf1-1/+1
2018-07-17Update distro docs to remove dead linksMatthew Martin1-11/+11
2017-07-2941472: introduce cleanup hooks default and restore special themes, and ↵Barton E. Schaefer1-2/+72
update documentation
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.