소스 검색

noop: Restructure code for clarity.

The structure now mirrors the stall construct at the top of the loop.
pull/355/head
Daniel Shahaf 8 년 전
부모
커밋
6e2ef574c8
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. +6
    -1
      highlighters/main/main-highlighter.zsh

+ 6
- 1
highlighters/main/main-highlighter.zsh 파일 보기

@ -546,7 +546,12 @@ _zsh_highlight_main_highlighter()
this_word=':start::regular:'
fi
start_pos=$end_pos
(( in_redirection == 0 )) && this_word=$next_word
if (( in_redirection == 0 )); then
# This is the default/common codepath.
this_word=$next_word
else
# Stall $this_word.
fi
done
}

불러오는 중...
취소
저장