New answers tagged fish
1
Thanks to Carl.
{ and } have special meanings in fish. They need to be escaped in order to work with find, for example:
find . -exec echo \{\} \;
2
Yes, you can do it with things like that:
zstyle -e ':completion:*:default' list-colors 'reply=("${PREFIX:+=(#bi)($PREFIX:t)(?)*==02=01}:${(s.:.)LS_COLORS}")'
Just change the 01 and 02 colors so it matches your taste, for example to match your screenshot:
zstyle -e ':completion:*:default' list-colors ...
Top 50 recent answers are included