Compare commits

...

10 commits

Author SHA1 Message Date
Manish Tiwari
2fc57d6306 tests: fix relative links in tests/README.md
test-highlighting.zsh and test-perfs.zsh were linked as tests/test-*.zsh,
but this file already lives in tests/, so the links resolved to
tests/tests/test-*.zsh and 404'd. Found by pointing a markdown
link-checker at the repo.
2026-08-21 21:19:05 -05:00
Colin Kinloch
c4d9559184 main: Add systemd run0 equivalent to sudo 2026-08-07 12:11:51 -07:00
Matthew Martin
1d85c69261 main: precommand_options += caffeinate
Closes #975
2026-02-08 10:49:40 -06:00
Daniel Shahaf
5eb677bb0f 'main' tests: Don't assume ps(1) is available.
It's actually unavailable in the minimal chroots Debian builds our
package on.  That's allowed by POSIX, which specifies ps(1) to be
optional, whereas id(1) —

- is not optional in POSIX
- should exist on every system anyone might run the testsuite on
- has the same length name, so test expectations don't have to be updated
- doesn't take a filename argument (ditto)

That does make the pipeline as a whole somewhat nonsensical
semantically, but it remains just as valid syntactically.
2024-11-21 15:09:26 +00:00
Matthew Martin
e0165eaa73 main: Refactor __is_redirection
Fixes #942.
2024-01-06 12:36:52 -06:00
Matthew Martin
dcc99a8649 Post-release version number bump. 2023-12-18 16:07:39 -06:00
Matthew Martin
db085e4661 Tag version 0.8.0. 2023-12-18 16:05:43 -06:00
Matthew Martin
9bb3db7fd2 driver: Use stable zsh release in is-at-least calls 2023-12-18 16:02:40 -06:00
Matthew Martin
bb27265aee CI: Update action versions 2023-10-29 13:25:08 -05:00
Matthew Martin
71bd576af8 CI += zsh 5.9 2023-10-29 13:13:49 -05:00
9 changed files with 119 additions and 27 deletions

View file

@ -20,6 +20,7 @@ jobs:
matrix: matrix:
version: version:
- master - master
- 5.9
- 5.8.1 - 5.8.1
- 5.8 - 5.8
- 5.7.1 - 5.7.1
@ -56,7 +57,7 @@ jobs:
container: container:
image: ghcr.io/zsh-users/zsh:${{ matrix.version }} image: ghcr.io/zsh-users/zsh:${{ matrix.version }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v4
- run: install_packages bsdmainutils make procps - run: install_packages bsdmainutils make procps
- run: make test - run: make test
@ -67,9 +68,8 @@ jobs:
steps: steps:
- -
name: Notify IRC name: Notify IRC
uses: Gottox/irc-message-action@v1 uses: Gottox/irc-message-action@v2
with: with:
server: irc.libera.chat
channel: '#zsh-syntax-highlighting' channel: '#zsh-syntax-highlighting'
nickname: zsyh-gh-bot nickname: zsyh-gh-bot
message: '${{ github.ref }} failed tests: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}' message: '${{ github.ref }} failed tests: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}'

View file

@ -1 +1 @@
0.8.0-alpha2-dev 0.8.1-dev

View file

@ -1,6 +1,15 @@
# Changes in HEAD # Changes in HEAD
- Highlight `&>` `>&|` `>&!` `&>|` and `&>!` as redirection.
[#942]
# Changes in 0.8.0
This is a stable bugfix and feature release. Major new features and changes include:
## Changes fixed as part of the switch to zle-line-pre-redraw ## Changes fixed as part of the switch to zle-line-pre-redraw
The changes in this section were fixed by switching to a `zle-line-pre-redraw`-based The changes in this section were fixed by switching to a `zle-line-pre-redraw`-based

View file

@ -254,10 +254,9 @@ _zsh_highlight_main__is_runnable() {
_zsh_highlight_main__is_redirection() { _zsh_highlight_main__is_redirection() {
# A redirection operator token: # A redirection operator token:
# - starts with an optional single-digit number; # - starts with an optional single-digit number;
# - then, has a '<' or '>' character; # - is one of the tokens listed in zshmisc(1)
# - is not a process substitution [<(...) or >(...)]. # - however (z) normalizes ! to |
# - is not a numeric glob <-> [[ ${1#[0-9]} == (\<|\<\>|(\>|\>\>)(|\|)|\<\<(|-)|\<\<\<|\<\&|\&\<|(\>|\>\>)\&(|\|)|\&(\>|\>\>)(|\||\!)) ]]
[[ $1 == (<0-9>|)(\<|\>)* ]] && [[ $1 != (\<|\>)$'\x28'* ]] && [[ $1 != *'<'*'-'*'>'* ]]
} }
# Resolve alias. # Resolve alias.
@ -355,6 +354,7 @@ _zsh_highlight_highlighter_main_paint()
'pkexec' '' # doesn't take short options; immune to #121 because it's usually not passed --option flags 'pkexec' '' # doesn't take short options; immune to #121 because it's usually not passed --option flags
# Not listed: -h, which has two different meanings. # Not listed: -h, which has two different meanings.
'sudo' Cgprtu:AEHPSbilns:eKkVv # as of sudo 1.8.21p2 'sudo' Cgprtu:AEHPSbilns:eKkVv # as of sudo 1.8.21p2
'run0' ugD:h # systemd 256.6
'stdbuf' ioe: 'stdbuf' ioe:
'eatmydata' '' 'eatmydata' ''
'catchsegv' '' 'catchsegv' ''
@ -373,6 +373,7 @@ _zsh_highlight_highlighter_main_paint()
'grc' :se # grc - a "generic colouriser" (that's their spelling, not mine) 'grc' :se # grc - a "generic colouriser" (that's their spelling, not mine)
'cpulimit' elp:ivz # cpulimit 0.2 'cpulimit' elp:ivz # cpulimit 0.2
'ktrace' fgpt:aBCcdiT 'ktrace' fgpt:aBCcdiT
'caffeinate' tw:dimsu # as of macOS's caffeinate(8) dated November 9, 2012
) )
# Commands that would need to skip one positional argument: # Commands that would need to skip one positional argument:
# flock # flock

View file

@ -27,7 +27,7 @@
# vim: ft=zsh sw=2 ts=2 et # vim: ft=zsh sw=2 ts=2 et
# ------------------------------------------------------------------------------------------------- # -------------------------------------------------------------------------------------------------
BUFFER='ps aux | grep java | sort | uniq | tail | head' BUFFER='id bob | grep java | sort | uniq | tail | head'
expected_region_highlight=( expected_region_highlight=(
"1 2 command" # ps "1 2 command" # ps

View file

@ -0,0 +1,95 @@
#!/usr/bin/env zsh
# -------------------------------------------------------------------------------------------------
# Copyright (c) 2024 zsh-syntax-highlighting contributors
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification, are permitted
# provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this list of conditions
# and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice, this list of
# conditions and the following disclaimer in the documentation and/or other materials provided
# with the distribution.
# * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
# may be used to endorse or promote products derived from this software without specific prior
# written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# -------------------------------------------------------------------------------------------------
# -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
# vim: ft=zsh sw=2 ts=2 et
# -------------------------------------------------------------------------------------------------
BUFFER=$': <foo 9<foo <>foo 9<>foo >foo 9>foo >|foo >\!foo >>foo >>|foo >>\!foo <<<foo <&9 >&9 <&- >&- <&p >&p >&foo &>foo >&|foo >&\!foo &>|foo &>\!foo >>&foo &>>foo >>&|foo >>&\!foo &>>|foo &>>\!foo'
expected_region_highlight=(
'1 1 builtin' # :
'3 3 redirection' # <
'4 6 default' # foo
'8 9 redirection' # 9<
'10 12 default' # foo
'14 15 redirection' # <>
'16 18 default' # foo
'20 22 redirection' # 9<>
'23 25 default' # foo
'27 27 redirection' # >
'28 30 default' # foo
'32 33 redirection' # 9>
'34 36 default' # foo
'38 39 redirection' # >|
'40 42 default' # foo
'44 45 redirection' # >\!
'46 48 default' # foo
'50 51 redirection' # >>
'52 54 default' # foo
'56 58 redirection' # >>|
'59 61 default' # foo
'63 65 redirection' # >>\!
'66 68 default' # foo
'70 72 redirection' # <<<
'73 75 default' # foo
'77 78 redirection' # <&
'79 79 numeric-fd' # 9
'81 82 redirection' # >&
'83 83 numeric-fd' # 9
'85 86 redirection' # <&
'87 87 redirection' # -
'89 90 redirection' # >&
'91 91 redirection' # -
'93 94 redirection' # <&
'95 95 redirection' # p
'97 98 redirection' # >&
'99 99 redirection' # p
'101 102 redirection' # >&
'103 105 default' # foo
'107 108 redirection' # &>
'109 111 default' # foo
'113 115 redirection' # >&|
'116 118 default' # foo
'120 122 redirection' # >&\!
'123 125 default' # foo
'127 129 redirection' # &>|
'130 132 default' # foo
'134 136 redirection' # &>\!
'137 139 default' # foo
'141 143 redirection' # >>&
'144 146 default' # foo
'148 150 redirection' # &>>
'151 153 default' # foo
'155 158 redirection' # >>&|
'159 161 default' # foo
'163 166 redirection' # >>&\!
'167 169 default' # foo
'171 174 redirection' # &>>|
'175 177 default' # foo
'179 182 redirection' # &>>\!
'183 185 default' # foo
)

View file

@ -27,7 +27,7 @@
# vim: ft=zsh sw=2 ts=2 et # vim: ft=zsh sw=2 ts=2 et
# ------------------------------------------------------------------------------------------------- # -------------------------------------------------------------------------------------------------
BUFFER='ps aux | grep java' BUFFER='id bob | grep java'
expected_region_highlight=( expected_region_highlight=(
"1 2 command" # ps "1 2 command" # ps

View file

@ -86,7 +86,7 @@ grow ways to set `$PREBUFFER` to inject free-form code into the generated file.
Highlighting test Highlighting test
----------------- -----------------
[`test-highlighting.zsh`](tests/test-highlighting.zsh) tests the correctness of [`test-highlighting.zsh`](test-highlighting.zsh) tests the correctness of
the highlighting. Usage: the highlighting. Usage:
```zsh ```zsh
@ -110,7 +110,7 @@ results (tests that failed but were expected to succeed, or vice-versa), run
Performance test Performance test
---------------- ----------------
[`test-perfs.zsh`](tests/test-perfs.zsh) measures the time spent doing the [`test-perfs.zsh`](test-perfs.zsh) measures the time spent doing the
highlighting. Usage: highlighting. Usage:
```zsh ```zsh

View file

@ -155,18 +155,7 @@ _zsh_highlight()
# C structs, so that none of the previous case patterns will match. # C structs, so that none of the previous case patterns will match.
# #
# In either case, fall back to a version check. # In either case, fall back to a version check.
# if is-at-least 5.9; then
# The memo= feature was added to zsh in commit zsh-5.8-172-gdd6e702ee.
# The version number at the time was 5.8.0.2-dev (see Config/version.mk).
# Therefore, on zsh master 5.8.0.3 and newer the memo= feature is available.
# However, there's also the zsh 5.8.1 release, which doesn't have the
# memo= feature.
#
# On zsh master 5.8.0.2 between the aforementioned commit and the
# first Config/version.mk bump after it (zsh-5.8-607-g75c1edde5, the
# bump to 5.8.1.1-dev following the backport to master of the bump
# to 5.8.1), this condition will false negative.
if is-at-least 5.8.1.1 $ZSH_VERSION.0.0; then
integer -gr zsh_highlight__memo_feature=1 integer -gr zsh_highlight__memo_feature=1
else else
integer -gr zsh_highlight__memo_feature=0 integer -gr zsh_highlight__memo_feature=0
@ -415,9 +404,7 @@ _zsh_highlight_call_widget()
# We check this with a plain version number check, since a functional check, # We check this with a plain version number check, since a functional check,
# as done by _zsh_highlight, can only be done from inside a widget # as done by _zsh_highlight, can only be done from inside a widget
# function — a catch-22. # function — a catch-22.
# if is-at-least 5.9 && _zsh_highlight__function_callable_p add-zle-hook-widget
# See _zsh_highlight for the magic version number.
if is-at-least 5.8.1.1 $ZSH_VERSION.0.0 && _zsh_highlight__function_callable_p add-zle-hook-widget
then then
autoload -U add-zle-hook-widget autoload -U add-zle-hook-widget
_zsh_highlight__zle-line-finish() { _zsh_highlight__zle-line-finish() {