Skip to content

Commit 0e7fade

Browse files
committed
theme/powerline-multiline: cleanup
1 parent 1272372 commit 0e7fade

File tree

2 files changed

+31
-18
lines changed

2 files changed

+31
-18
lines changed

themes/powerline-multiline/powerline-multiline.base.bash

+29-16
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ function __powerline_right_segment() {
1010
local padding=0
1111

1212
if [[ "${SEGMENTS_AT_RIGHT}" -eq 0 ]]; then
13-
if [[ "${POWERLINE_COMPACT_AFTER_LAST_SEGMENT}" -ne 0 ]]; then
13+
if [[ "${POWERLINE_COMPACT_AFTER_LAST_SEGMENT:-${POWERLINE_COMPACT:-0}}" -ne 0 ]]; then
1414
pad_before_segment=""
1515
fi
16-
RIGHT_PROMPT+="$(set_color "${params[1]:-}" -)${POWERLINE_RIGHT_END?}${normal?}"
16+
RIGHT_PROMPT+="$(set_color "${params[1]:-}" -)${POWERLINE_RIGHT_LAST_SEGMENT_END_CHAR:-}${normal?}"
1717
((padding += 1))
1818
else
1919
if [[ "${POWERLINE_COMPACT_BEFORE_SEPARATOR:-}" -ne 0 ]]; then
@@ -26,9 +26,9 @@ function __powerline_right_segment() {
2626
((padding += 1))
2727
fi
2828
if [[ "${LAST_SEGMENT_COLOR}" -eq "${params[1]:-}" ]]; then
29-
RIGHT_PROMPT+="$(set_color - "${LAST_SEGMENT_COLOR?}")${POWERLINE_RIGHT_SEPARATOR_SOFT?}${normal?}"
29+
RIGHT_PROMPT+="$(set_color - "${LAST_SEGMENT_COLOR?}")${POWERLINE_RIGHT_SEPARATOR_SOFT- }${normal?}"
3030
else
31-
RIGHT_PROMPT+="$(set_color "${params[1]:-}" "${LAST_SEGMENT_COLOR?}")${POWERLINE_RIGHT_SEPARATOR?}${normal?}"
31+
RIGHT_PROMPT+="$(set_color "${params[1]:-}" "${LAST_SEGMENT_COLOR?}")${POWERLINE_RIGHT_SEPARATOR- }${normal?}"
3232
fi
3333
((padding += 1))
3434
fi
@@ -49,16 +49,19 @@ function __powerline_right_first_segment_padding() {
4949
}
5050

5151
function __powerline_last_status_prompt() {
52-
[[ "$1" -ne 0 ]] && echo "$(set_color "${LAST_STATUS_THEME_PROMPT_COLOR?}" -) ${1} ${normal?}"
52+
if [[ "${1?}" -ne 0 ]]; then
53+
printf '%b %s %b' "$(set_color "${LAST_STATUS_THEME_PROMPT_COLOR-"52"}" -)" "${1}" "${normal?}"
54+
fi
5355
}
5456

5557
function __powerline_prompt_command() {
5658
local last_status="$?" ## always the first
57-
local move_cursor_rightmost='\033[500C' info prompt
59+
local move_cursor_rightmost='\e[500C'
60+
local info prompt_color segment prompt
5861

5962
local LEFT_PROMPT=""
6063
local RIGHT_PROMPT=""
61-
local RIGHT_PROMPT_LENGTH=${POWERLINE_PADDING?}
64+
local RIGHT_PROMPT_LENGTH=${POWERLINE_PADDING:-2}
6265
local SEGMENTS_AT_LEFT=0
6366
local SEGMENTS_AT_RIGHT=0
6467
local LAST_SEGMENT_COLOR=""
@@ -70,26 +73,36 @@ function __powerline_prompt_command() {
7073
fi
7174

7275
## left prompt ##
73-
for segment in ${POWERLINE_PROMPT-"user_info scm python_venv ruby node cwd"}; do
76+
# shellcheck disable=SC2068 # intended behavior
77+
for segment in ${POWERLINE_PROMPT[@]-"user_info" "scm" "python_venv" "ruby" "node" "cwd"}; do
7478
info="$("__powerline_${segment}_prompt")"
75-
[[ -n "${info}" ]] && __powerline_left_segment "${info}"
79+
if [[ -n "${info}" ]]; then
80+
__powerline_left_segment "${info}"
81+
fi
7682
done
7783

78-
if [[ -n "${LEFT_PROMPT:-}" ]] && [[ "${POWERLINE_COMPACT_AFTER_LAST_SEGMENT:-0}" -eq 0 ]]; then
84+
if [[ -n "${LEFT_PROMPT:-}" && "${POWERLINE_COMPACT_AFTER_LAST_SEGMENT:-${POWERLINE_COMPACT:-0}}" -eq 0 ]]; then
7985
__powerline_left_last_segment_padding
8086
fi
8187

82-
[[ -n "${LEFT_PROMPT:-}" ]] && LEFT_PROMPT+="$(set_color "${LAST_SEGMENT_COLOR?}" -)${POWERLINE_LEFT_END?}${normal?}"
88+
# By default we try to match the prompt to the adjacent segment's background color,
89+
# but when part of the prompt exists within that segment, we instead match the foreground color.
90+
prompt_color="$(set_color "${LAST_SEGMENT_COLOR?}" -)"
91+
if [[ -n "${LEFT_PROMPT:-}" && -n "${POWERLINE_LEFT_LAST_SEGMENT_END_CHAR:-}" ]]; then
92+
LEFT_PROMPT+="$(set_color - "${LAST_SEGMENT_COLOR?}")${POWERLINE_LEFT_LAST_SEGMENT_END_CHAR}"
93+
prompt_color="${normal?}"
94+
fi
8395

8496
## right prompt ##
85-
if [[ -n "${POWERLINE_RIGHT_PROMPT}" ]]; then
97+
if [[ -n "${POWERLINE_RIGHT_PROMPT[*]:-}" ]]; then
8698
# LEFT_PROMPT+="${move_cursor_rightmost}"
87-
for segment in $POWERLINE_RIGHT_PROMPT; do
99+
# shellcheck disable=SC2068 # intended behavior
100+
for segment in ${POWERLINE_RIGHT_PROMPT[@]}; do
88101
info="$("__powerline_${segment}_prompt")"
89102
[[ -n "${info}" ]] && __powerline_right_segment "${info}"
90103
done
91104

92-
if [[ -n "${RIGHT_PROMPT:-}" ]] && [[ "${POWERLINE_COMPACT_BEFORE_FIRST_SEGMENT:-0}" -eq 0 ]]; then
105+
if [[ -n "${RIGHT_PROMPT:-}" && "${POWERLINE_COMPACT_BEFORE_FIRST_SEGMENT:-0}" -eq 0 ]]; then
93106
__powerline_right_first_segment_padding
94107
fi
95108

@@ -98,10 +111,10 @@ function __powerline_prompt_command() {
98111
LEFT_PROMPT+="\033[$((${#RIGHT_PAD} - 1))D"
99112
fi
100113

101-
prompt="${PROMPT_CHAR?}"
114+
prompt="${prompt_color}${PROMPT_CHAR-${POWERLINE_PROMPT_CHAR-\\$}}${normal?}"
102115
if [[ "${POWERLINE_COMPACT_PROMPT:-0}" -eq 0 ]]; then
103116
prompt+=" "
104117
fi
105118

106-
PS1="${LEFT_PROMPT}${RIGHT_PROMPT}\n$(__powerline_last_status_prompt "${last_status}")${prompt}"
119+
PS1="${normal?}${LEFT_PROMPT}${RIGHT_PROMPT}\n$(__powerline_last_status_prompt "${last_status}")${prompt}"
107120
}

themes/powerline-multiline/powerline-multiline.theme.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ PROMPT_CHAR=${POWERLINE_PROMPT_CHAR:="❯"}
88
: "${POWERLINE_LEFT_SEPARATOR_SOFT:=""}"
99
: "${POWERLINE_RIGHT_SEPARATOR:=""}"
1010
: "${POWERLINE_RIGHT_SEPARATOR_SOFT:=""}"
11-
: "${POWERLINE_LEFT_END:=""}"
12-
: "${POWERLINE_RIGHT_END:=""}"
11+
: "${POWERLINE_LEFT_LAST_SEGMENT_END_CHAR:=""}"
12+
: "${POWERLINE_RIGHT_LAST_SEGMENT_END_CHAR:=""}"
1313
: "${POWERLINE_PADDING:=2}"
1414

1515
: "${POWERLINE_COMPACT:=0}"

0 commit comments

Comments
 (0)