File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ run_test() {
206
206
local ret=$pipestatus [1] stderr=$pipestatus [2]
207
207
if (( ! stderr )) ; then
208
208
# stdout will become stderr
209
- echo " Bail out! On ${(qq)1} : output on stderr" ; return 1
209
+ echo " Bail out! On ${(qq)1} : output on stderr" ; return 1
210
210
else
211
211
return $ret
212
212
fi
Original file line number Diff line number Diff line change @@ -161,12 +161,12 @@ _zsh_highlight()
161
161
(( REGION_ACTIVE )) || return
162
162
integer min max
163
163
if (( MARK > CURSOR )) ; then
164
- min=$CURSOR max=$MARK
164
+ min=$CURSOR max=$MARK
165
165
else
166
- min=$MARK max=$CURSOR
166
+ min=$MARK max=$CURSOR
167
167
fi
168
168
if (( REGION_ACTIVE == 1 )) ; then
169
- [[ $KEYMAP = vicmd ]] && (( max++ ))
169
+ [[ $KEYMAP = vicmd ]] && (( max++ ))
170
170
elif (( REGION_ACTIVE == 2 )) ; then
171
171
local needle=$' \n '
172
172
# CURSOR and MARK are 0 indexed between letters like region_highlight
You can’t perform that action at this time.
0 commit comments