를 사용할 때 zstyle ':completion:*:descriptions' format '%d'
완성 옵션 위에 짧은 제목이 표시됩니다.
짧은 예를 들면 다음과 같습니다.
prompt% function _myfun1() { _arguments '--debug[print some debug]' '--quiet[do not print stuff]'}
prompt% compdef _myfun1 myfun1
prompt% myfun1⇥
option:
--debug -- print some debug
--quiet -- do not print stuff
이 설명은 사용될 때 _describe
지정할 수 있습니다 _describe -t tagname "description" arraywithoptions
. 다른 설명으로 기본값을 무시할 수 있습니까 _argument
?option
답변1
options
에서 추가한 태그뿐만 아니라 태그인 모든 항목으로 이를 재정의할 수 있습니다 _arguments
.
zstyle ':completion:*:options:descriptions' format '%Boverriden option%b'