Silvio Sabo

Results 19 comments of Silvio Sabo

No it doesn't. The variable is exported. I can even test it in the command line like so: ``` ❯ echo $ZSH_TAB_TITLE_DEFAULT_DISABLE_PREFIX true ``` What I have done now i...

I've also seen that ZSH_TAB_TITLE_ONLY_FOLDER also dosent work right for me. It is displaying the whole path still even though it's set. I have these set in my .zshrc: ```bash...

I'm running Debian 11 Bullseye and using GNOME-Terminal

The strange part is that I am running `oh-my-zsh` and installing it didn't work. It couldn't find the plugin until I changed the name of the folder from `zsh-tab-title` to...

I'm on my working machine now (with Debian). But I will try it on my MacBook later tonight as well.

I just tried something that might have fixed it. I reinstalled and didn't move the folder from `.oh-my-zsh/custom/plugins/zsh-tab-title` to `.oh-my-zsh/custom/plugins/title`. Instead I renamed the file from `title.plugin.zsh` to `zsh-tab-title.plugin.zsh` (to...

It does. It does show just the folder name when I run the command. Like so: ``` /etc/systemd/system🔒 ❯ echo ${PWD##*/} system ``` However the title still shows the full...

I even tried editing the part with the `ZSH_TAB_TITLE_ONLY_FOLDER` like so: ```bash if [[ "$ZSH_TAB_TITLE_ONLY_FOLDER" == true ]]; then #ZSH_THEME_TERM_TAB_TITLE_IDLE=${PWD##*/} ZSH_THEME_TERM_TAB_TITLE_IDLE="SOME TEXT" fi ZSH_THEME_TERM_TAB_TITLE_IDLE="SOME TEXT" ``` It still shows the...

Sure I'd be willing to try it out!

Hi. Great, thanks. I will test it. I am on vacation at the moment though and don't have access to my work computer. I will do it next week and...