about summary refs log tree commit diff
path: root/Doc/Zsh/contrib.yo
Commit message (Collapse)AuthorAgeFilesLines
* unposted: update doc for "colors" for workers/47489,50212 (italic and bright)Bart Schaefer2024-03-131-2/+6
|
* 52641: incarg: add a backward variant and make it repeatablemidchildan2024-03-051-3/+5
|
* 52523: fixes to preceding incarg patchmidchildan2024-02-151-2/+3
|
* 52520: add new features and improvements to the "incarg" ZLE widgetmidchildan2024-02-151-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
* 52465: use NULL_GLOB when expanding zmv input pattern to avoid NOMATCH exitBart Schaefer2024-01-051-4/+4
|
* 52222: Document bracketed-paste-url-magicMikael Magnusson2023-10-171-0/+27
|
* 52028: improvements to _shadow / _unshadow, plus helper and docBart Schaefer2023-08-271-0/+21
|
* 50648: Use $ZCALC_HISTORY where appropriateJulian Prein2022-09-251-2/+5
|
* unposted: Fix some typos and markup.Daniel Shahaf2022-02-221-2/+2
|
* 49727 (+ comment): vcs_info quilt: Pass the patches dir path to the ↵Daniel Shahaf2022-02-201-0/+15
| | | | | | gen-applied-string, gen-unapplied-string, and set-patch-format hooks I use that in my gen-applied-string hook.
* unposted: vcs_info quilt docs: Fix misspelled style nameDaniel Shahaf2022-01-271-1/+1
|
* 49448: docs: Fix pointers to the `Widgets', `User-defined Widgets', and ↵Daniel Shahaf2021-11-261-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.
* 49445: docs: Clean up some subsection references.Daniel Shahaf2021-11-261-3/+3
|
* unposted: Fix typosDaniel Shahaf2021-09-261-1/+1
|
* 45180: clarify doc for POSIX EREs, fix an issue with PCRE when the ↵Stephane Chazelas2021-09-061-1/+4
| | | | replacement was empty or generated more than one element
* 49065: remove bad cross-referenceBart Schaefer2021-06-131-3/+2
|
* 48853: improved handling of theme resets when changing prompt themes, ↵Marlon Richert2021-05-161-4/+6
| | | | especially for theme preview
* 48710: histed + other zed updatesBart Schaefer2021-05-151-2/+19
|
* 48707: fix keymap handling when zed invokes read-from-minibuffer; update docBart Schaefer2021-05-151-10/+11
|
* 48435 (tweaked): vcs_info docs: applied-string/unapplied-string: Correct an ↵Daniel Shahaf2021-04-201-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.
* 45583/0008: vcs_info git: Use best practices in an exampleDaniel Shahaf2021-04-151-1/+1
| | | | | The alias was vulnerable to SHORT_LOOPS syntax, not invokable from scripts, etc..
* 45583/0007: vcs_info docs: vcs_info_lastmsg: Correct an ambiguous/wrong ↵Daniel Shahaf2021-04-151-1/+1
| | | | description.
* 45583/0006: vcs_info docs: Change user-context name in an example, to avoid ↵Daniel Shahaf2021-04-151-2/+2
| | | | confusion with the special-casing of the value `command' in vcs_info_lastmsg.
* 45583/0005: vcs_info docs: Recommend use of prompt expandos rather than ↵Daniel Shahaf2021-04-151-1/+13
| | | | terminal escape sequences.
* 45583/0003: docs: Fix rendering in the man page outputDaniel Shahaf2021-04-151-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).
* 45583/0002 (tweaked): docs: Fix rendering of an example in the man page outputDaniel Shahaf2021-04-151-0/+2
| | | | | The texi output was unaffected. However, in the man page on my system, everything after the example() was underlined and not indented.
* 47830: Fix some documentation typosLawrence Velázquez2021-02-161-2/+2
|
* 47731 (+unposted): add run-help assistant for btrfsJun-ichi Takimoto2020-12-111-6/+9
| | | | also fix format errors in contrib.yo
* 47468: Doc/Zsh/contrib.yo: Fix typoAxel Beckert2020-10-181-1/+1
|
* 47306: edit-command-line: add editor styleMikael Magnusson2020-08-161-0/+6
|
* 46240: Make the expansion of manref()() in ztexi.yo match its expansion in ↵Daniel Shahaf2020-07-131-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()().
* 46072 + 46136: Add the 'zle $widget -f nolast' syntax, to improve ↵Daniel Shahaf2020-06-271-1/+1
| | | | | | add-zle-hook-widget support for multiple hook functions. See workers/46004 for the use-case.
* unposted: docs: Fix some markup and typos.Daniel Shahaf2020-06-261-2/+2
|
* 46091: Add code to Mercurial VCS backend to show topic if there is any.Manuel Jacob2020-06-221-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.
* 45540: vcs_info git: In non-interactive rebases, compute patch names for ↵Daniel Shahaf2020-03-151-2/+2
| | | | unapplied patches.
* users/24628 (fixed): More doc for selectw-word-style widgets.Peter Stephenson2020-01-111-1/+14
| | | | | Add example of how to add a new binding for a widget that fixes a particular word behaviour using styles.
* unposted (after 45183): Fix yodl error: "contrib.yo:4457: No macro: back(...)".Daniel Shahaf2020-01-021-1/+1
|
* 45183: Improve documentation examplesStephane Chazelas2020-01-011-9/+13
|
* 45113: vcs_info docs: Clarify documentation of the %p/%u/%a patch-format ↵Daniel Shahaf2019-12-221-3/+3
| | | | expandos.
* 45073: regex-replace docs: Simplify grammar (avoid a double negative, state ↵Daniel Shahaf2019-12-181-3/+4
| | | | defaults first).
* 44981: Fix some typos in the documentation.Martijn Dekker2019-12-041-1/+1
|
* 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: Fix typoDaniel Shahaf2018-10-021-1/+1
|
* Update distro docs to remove dead linksMatthew Martin2018-07-171-11/+11
|
* 41472: introduce cleanup hooks default and restore special themes, and ↵Barton E. Schaefer2017-07-291-2/+72
| | | | update documentation
* unposted (after 40859): Fix yodl warning:Daniel Shahaf2017-03-201-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.
* 40859: vcs_info docs: Use proper internal links through texinfo nodes.Daniel Shahaf2017-03-191-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"
* unposted: vcs_info quilt: Fix documentation markup typo.Daniel Shahaf2017-03-181-1/+1
|
* 40822: vcs_info quilt: Document the '.quilt-foo' zstyle context element. ↵Daniel Shahaf2017-03-141-5/+16
| | | | (Compare users/20807.)
* 40492: vcs_info: Escape '%' signs in payloads.Daniel Shahaf2017-02-091-0/+17
| | | | | Test case: a patch whose subject is '%Sfoo%sbar'. ('S' and 's' are expandos both in prompts and in the 'formats' style.)