about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
...
* 51289: don't disable non-colour attributes in prompts for SINGLE_LINE_ZLE ↵Oliver Kiddle2023-01-103-4/+5
| | | | and remove superfluous extra escapes to disable attributes
* 51281: keep track of attributes left on at the end of left and right prompts ↵Oliver Kiddle2023-01-104-27/+28
| | | | and reapply them explicitly as appropriate
* 51280: add support for italic and faint fonts in the line editorOliver Kiddle2023-01-106-49/+101
|
* 51258, 51272: refactor handling of terminal attributes, removing OFF flags ↵Oliver Kiddle2023-01-1018-478/+400
| | | | in zattr
* 51276: Fix diff completion for non GNU / FreeBSD platformsNathan Houghton2023-01-102-15/+31
| | | | | | On OpenBSD, "diff -urpN dir1/ di<TAB>" would refuse to complete a second filename/directory name. This was caused by the -u and -U options getting dropped from args (overwriting args vs appending).
* unposted: In a comment, replace a C variables glob pattern with its matches, ↵Daniel Shahaf2023-01-082-2/+7
| | | | for greppability.
* unposted (cf. users/28616): _svnadmin: Add comment noting a case that's not ↵Daniel Shahaf2023-01-062-0/+9
| | | | completed correctly.
* 51263: fix typo - `an path` -> `a path`Max Coplan2022-12-312-1/+3
|
* 51255: Update erb completion for version 4.0.2Shohei YOSHIDA2022-12-312-2/+6
|
* 51254: Add irb completion for version 1.6.2Shohei YOSHIDA2022-12-312-2/+17
|
* 51253: Update ruby completion for version 3.2.0Shohei YOSHIDA2022-12-312-10/+20
|
* 51233: Update sanitizer list to GCC 12Shohei YOSHIDA2022-12-312-5/+12
| | | | | | | | | | | | | | | | | | | Add following sanitizers - bounds-strict - hwaddress - kernel-address - kernel-hwaddress - leak - pointer-compare - pointer-subtract - shadow-call-stack - shift-base - shift-exponent - thread - undefined And sort the list in alphabetical order
* 51249: use of --force-local with tar completionDaniel Shahaf2022-12-302-1/+6
|
* 51214: handle read -d and a delimiter that can't be decoded into a characterOliver Kiddle2022-12-175-3/+29
| | | | | | Terminate input at the raw byte value of the delimiter. Also document and test the use of an empty string as a way to specify NUL as the delimiter.
* 51207: fix for read -d when the delimiter is a byte >= 0x80Jun-ichi Takimoto2022-12-173-3/+13
|
* 51212: remove STOUC() macroOliver Kiddle2022-12-1634-204/+192
| | | | | This served as a workaround for ancient compilers where casts to unsigned char were broken.
* 51215: consume whole CSI sequences from the inputOliver Kiddle2022-12-164-2/+60
| | | | | | | This affects CSI sequences that aren't explicitly bound but arrive within the usual KEYTIMEOUT time limits. A single undefined-key widget is run instead of unintended bindings for Escape and other characters in the sequence.
* unpasted: add missing ChangeLog entryPeter Stephenson2022-12-161-0/+4
|
* unposted: Follow-up to the last commit: Fix a typo in a comment.Daniel Shahaf2022-12-152-1/+4
|
* unposted: zsh.h: lextok: Add an explanatory comment with a cross-reference.Daniel Shahaf2022-12-152-0/+8
|
* 51210: Clear errflag before calling EXIT trapBart Schaefer2022-12-132-0/+7
| | | | | If this is not done, special cases such as failures in special builtins or errors in math expressions skip the trap execution.
* 51198: Clarify and expand ERR_EXIT and ERR_RETURN documentationPhilippe Altherr2022-12-132-38/+49
|
* 51193: Discuss ERR_EXIT changesPhilippe Altherr2022-12-133-2/+62
|
* 51134: ! return doesn't change the return statusPeter Stephenson2022-12-122-1/+13
|
* 51134: document interactive behaviour with ERR_EXIT and ERR_RETURNPeter Stephenson2022-12-122-1/+12
|
* 51161: correct errno after closing xtrace FDBart Schaefer2022-12-092-0/+5
|
* 51111: update completion for global to version 6.6.8Shohei YOSHIDA2022-12-092-2/+10
|
* 51047: fix quoting of completion matches when _canonical_paths -N option is usedBart Schaefer2022-12-092-2/+8
|
* 51144, 51146: vcs_info git: stg: Extract patch descriptionsDaniel Shahaf2022-12-092-2/+8
| | | | Joint work with Peter Grayson.
* 51142: vcs_info git: Check the get-unapplied style as documentedDaniel Shahaf2022-12-082-2/+11
| | | | | | | | | | | | The style was treated as "always true" rather than as "settable, false by default" in the rebase-merge and cherry-pick cases. This affects the gen-unapplied-string hook, and may also affect gen-applied-string and set-patch-format hooks if they accessed VCS_INFO_get_data_git's internal parameters directly. If this affects you, just set the style in your zshrc: . zstyle ':vcs_info:git*:*:*' get-unapplied true
* 51138: Updated StGit patch detection in vcs_infoPeter Grayson2022-12-082-9/+32
| | | | | | | | | | | | | | | | | | | The vcs_info patch detection code attempted to interrogate StGit patch stack state by inspecting .git/patches/applied and .git/patches/unapplied. As of StGit 0.15 (2009), patch stack metadata is captured in the repo's object database. And as of StGit 1.0 (2021), no stack or patch state is maintained in any files in the .git/ directory. Zsh's approach for interrogating StGit patch state is thus obsoleted. This patch updates vcs_info to determine whether StGit is initialized on a branch by looking at the appropriate git refs and uses StGit's prescribed interface for interrogating applied and unapplied patch state via the `stg series` command. This approach will work with all versions of StGit >=0.15. Signed-off-by: Peter Grayson <pete@jpgrayson.net>
* 51108: single letter forms of Shift-JIS / EUC-JP options were reversedShohei YOSHIDA2022-12-062-4/+7
|
* 51088: fix standards reference in commentAtte Peltomäki2022-12-062-1/+5
|
* 51094: consistent use of bit-manipulation for noerrexit value changesPhilippe Altherr2022-12-033-4/+7
|
* 51098: remove unreachable NOERREXIT_UNTIL_EXEC code and effectsPhilippe Altherr2022-12-034-26/+7
|
* 51076: fix ERR_EXIT when used with "eval" or "source"; documentary commentsPhilippe Altherr2022-12-033-3/+87
|
* 51071: fix ERR_RETURN for functions in conditional statementsPhilippe Altherr2022-12-033-7/+25
|
* 51001: ChangeLog entry for preceding four patch commits.Bart Schaefer2022-12-031-0/+6
|
* 51001: fix for ERR_EXIT following shell function; update testsPhilippe Altherr2022-12-032-9/+83
|
* 51001: fix for ERR_EXIT with pipeline negation ("!"); update testsPhilippe Altherr2022-12-032-5/+23
|
* 51001: fix for ERR_EXIT with "always" blocks; update testsPhilippe Altherr2022-12-032-7/+30
|
* 51001: Reverts 8839e969b, most of 1ba8714a, and d873ed60.Philippe Altherr2022-12-035-32/+19
| | | | Also correct ChangeLog
* 51080: allow multibyte chars in glob qualifier (u:uname:)Jun-ichi Takimoto2022-12-022-1/+4
|
* 51079: metafy sep in array subscript flag (s:sep:)Jun-ichi Takimoto2022-12-023-3/+17
| | | | this enable sep to contain \0 etc.
* unposted (cf. 51016): Add a test case for underscore-followed-by-digits in ↵Daniel Shahaf2022-11-232-0/+13
| | | | math context.
* unposted (c.f. Norikatsu Shigemura: github #96): add missing local declarationOliver Kiddle2022-11-172-1/+5
|
* github #87 (tweaked): update options tmux 3.4Matt Koscica2022-11-173-13/+57
| | | | | | | | | | | | | | | | Import completion updates from tmux.git, the revision used was c67abcf8182b, and the updates were generated by Util/check-tmux-state. check-tmux-state: changes to output parsing + variable declaration parsing of `tmux show-options` is slightly more idiomatic (thanks to @phy1729 for the syntax), and it now also ignores user-specified options (which are prefixed with an @ symbol). the lines defining and declaring supported_server_options were also swapped to the correct order - `typeset` was being called after supported_server_options was populated, contrary to all the other supported_*/available_* arrays used in the same area of the file.
* github #95: Add completions for neomuttWu Zhenyu2022-11-172-1/+4
|
* unposted (c.f. Denis Bitouzé: users/28405): handle also lualatexOliver Kiddle2022-11-172-1/+4
|
* 50934: use OSC 52 escape sequence when copying to "* or "+ vi buffersOliver Kiddle2022-11-175-7/+54
|