@@ -10,10 +10,10 @@ function __powerline_right_segment() {
10
10
local padding=0
11
11
12
12
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
14
14
pad_before_segment=" "
15
15
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?} "
17
17
(( padding += 1 ))
18
18
else
19
19
if [[ " ${POWERLINE_COMPACT_BEFORE_SEPARATOR:- } " -ne 0 ]]; then
@@ -26,9 +26,9 @@ function __powerline_right_segment() {
26
26
(( padding += 1 ))
27
27
fi
28
28
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?} "
30
30
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?} "
32
32
fi
33
33
(( padding += 1 ))
34
34
fi
@@ -49,16 +49,19 @@ function __powerline_right_first_segment_padding() {
49
49
}
50
50
51
51
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
53
55
}
54
56
55
57
function __powerline_prompt_command() {
56
58
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
58
61
59
62
local LEFT_PROMPT=" "
60
63
local RIGHT_PROMPT=" "
61
- local RIGHT_PROMPT_LENGTH=${POWERLINE_PADDING? }
64
+ local RIGHT_PROMPT_LENGTH=${POWERLINE_PADDING:- 2 }
62
65
local SEGMENTS_AT_LEFT=0
63
66
local SEGMENTS_AT_RIGHT=0
64
67
local LAST_SEGMENT_COLOR=" "
@@ -70,26 +73,36 @@ function __powerline_prompt_command() {
70
73
fi
71
74
72
75
# # 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
74
78
info=" $( " __powerline_${segment} _prompt" ) "
75
- [[ -n " ${info} " ]] && __powerline_left_segment " ${info} "
79
+ if [[ -n " ${info} " ]]; then
80
+ __powerline_left_segment " ${info} "
81
+ fi
76
82
done
77
83
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
79
85
__powerline_left_last_segment_padding
80
86
fi
81
87
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
83
95
84
96
# # right prompt ##
85
- if [[ -n " ${POWERLINE_RIGHT_PROMPT} " ]]; then
97
+ if [[ -n " ${POWERLINE_RIGHT_PROMPT[*] :- } " ]]; then
86
98
# 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
88
101
info=" $( " __powerline_${segment} _prompt" ) "
89
102
[[ -n " ${info} " ]] && __powerline_right_segment " ${info} "
90
103
done
91
104
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
93
106
__powerline_right_first_segment_padding
94
107
fi
95
108
@@ -98,10 +111,10 @@ function __powerline_prompt_command() {
98
111
LEFT_PROMPT+=" \033[$(( ${# RIGHT_PAD} - 1 )) D"
99
112
fi
100
113
101
- prompt=" ${PROMPT_CHAR?} "
114
+ prompt=" ${prompt_color}${ PROMPT_CHAR- ${POWERLINE_PROMPT_CHAR- \\ $} }${normal ?} "
102
115
if [[ " ${POWERLINE_COMPACT_PROMPT:- 0} " -eq 0 ]]; then
103
116
prompt+=" "
104
117
fi
105
118
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} "
107
120
}
0 commit comments