From 0363e5316fe37761c3c1f15d29c70e9c9b06607c Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Thu, 5 Feb 2026 11:32:35 +0100 Subject: [PATCH] Fix terminal windows showing changed dirs --- dotfiles/.bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/.bashrc b/dotfiles/.bashrc index a658705..6eeb1a9 100644 --- a/dotfiles/.bashrc +++ b/dotfiles/.bashrc @@ -41,7 +41,7 @@ HISTTIMEFORMAT='%F %T ' shopt -s histappend shopt -s cmdhist #Save multi line commands as one history entry -PROMPT_COMMAND='history -a' #Append to history after each command +PROMPT_COMMAND+=("history -a") #Append to history after each command PROMPT_DIRTRIM=2 PS1='\[\033[0;33m\][\u@\h:\w]\$\[\033[0m\] '