Skip to content

Commit afc0ae0

Browse files
committed
🐛 Fix human theme double space after notification area
1 parent 9ab6435 commit afc0ae0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

theme-functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ __fancygit_get_poor_notification_area() {
137137
# Trim notification_area content
138138
notification_area=$(echo "$notification_area" | sed -e 's/[[:space:]]*$//' | sed -e 's/^[[:space:]]*//')
139139

140-
echo "${notification_area//[[:space:]]*$/} "
140+
echo "${notification_area//[[:space:]]*$/}"
141141
return
142142
fi
143143

themes/human.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ fancygit_theme_builder() {
140140
return
141141
fi
142142

143-
PS1="${bold_prompt}${prompt_time}${prompt_user_at_host}${prompt_path}${venv_name} ${prompt_symbol}${is_double_line}${normal_prompt} "
143+
PS1="${bold_prompt}${prompt_time}${prompt_user_at_host}${prompt_path}${venv_name}${prompt_symbol}${is_double_line}${normal_prompt} "
144144
}
145145

146146
# Here's where the magic happens!

0 commit comments

Comments
 (0)