如何格式化zsh補全「互動式」選單?

如何格式化zsh補全「互動式」選單?

格式化 zsh 完成系統結果通常相對簡單,例如,

zstyle ':completion:*:warnings' format ' %F{red}-- no matches found --%f'

當使用互動式選單模式(例如zstyle ':completion:*' menu select interactive)時,終端選單中會新增一行額外的內容

> cd searchstring
interactive: searchstring[] <-- this one!
--- the results 

是否可以格式化該interactive: searchstring[]行?我嘗試使用zstyle format我能想到的所有標準標籤來修改上述命令,但似乎都不起作用。

這可能嗎?

相關內容