We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bdeb4a commit c4bb260Copy full SHA for c4bb260
tests/test-highlighting.zsh
@@ -131,7 +131,11 @@ run_test_internal() {
131
132
# WARNING: The remainder of this anonymous function will run with the test's options in effect
133
134
- (( $#skip_test )) && { print -r -- "1..0 # SKIP $skip_test"; return ${RETURN:=0}; }
+ (( $#skip_test )) && {
135
+ print -r -- "1..0 # SKIP $skip_test"
136
+ print -r -- "## ${ARG:t:r}"
137
+ return ${RETURN:=0}
138
+ }
139
140
# Check the data declares $PREBUFFER or $BUFFER.
141
[[ -z $PREBUFFER && -z $BUFFER ]] && { echo >&2 "Bail out! On ${(qq)1}: Either 'PREBUFFER' or 'BUFFER' must be declared and non-blank"; return ${RETURN:=1}; }
0 commit comments