Artificial intelligent assistant

Remove forward slash when tabbing to see a list of directories Is there a way to remove the trailing forward slashes in the tab-completion output of Zsh when I start writing a `cd` command and tab to see a list of directories? E.g. ~ cd _< tab>_ Adlm/ Desktop/ Applications/ Development/ I was wondering if there's any way to remove the slashes after the directory names, to show `Adlm` instead of `Adlm/`, etc.

In `zsh`, it's:


set +o list_types


When using `complist`, you can also change its color to make it less visible:


zstyle ':completion:*' list-colors tc=33 ${(s.:.)LS_COLORS}


to make it yellow (less visible on a terminal with white background), and use the GNU `ls` colors (assuming you've run `eval "$(dircolors)"`) for the rest.

xcX3v84RxoQ-4GxG32940ukFUIEgYdPy d649a65a7ded3a4678261da694c3c3d9