4
4
source " ${BASH_IT?} /themes/powerline/powerline.base.bash"
5
5
6
6
function __powerline_last_status_prompt {
7
- [[ " $1 " -ne 0 ]] && echo " $( set_color ${LAST_STATUS_THEME_PROMPT_COLOR} -) ${1} ${normal} "
7
+ [[ " $1 " -ne 0 ]] && echo " $( set_color " ${LAST_STATUS_THEME_PROMPT_COLOR?} " -) ${1} ${normal? } "
8
8
}
9
9
10
10
function __powerline_right_segment {
@@ -17,92 +17,87 @@ function __powerline_right_segment {
17
17
if [[ " ${POWERLINE_COMPACT_AFTER_LAST_SEGMENT} " -ne 0 ]]; then
18
18
pad_before_segment=" "
19
19
fi
20
- RIGHT_PROMPT+=" $( set_color ${params[1]} -) ${POWERLINE_RIGHT_END}${normal} "
20
+ RIGHT_PROMPT+=" $( set_color " ${params[1]:- } " -) ${POWERLINE_RIGHT_END? }${normal? } "
21
21
(( padding += 1 ))
22
22
else
23
- if [[ " ${POWERLINE_COMPACT_BEFORE_SEPARATOR} " -ne 0 ]]; then
23
+ if [[ " ${POWERLINE_COMPACT_BEFORE_SEPARATOR:- } " -ne 0 ]]; then
24
24
pad_before_segment=" "
25
25
fi
26
26
# Since the previous segment wasn't the last segment, add padding, if needed
27
27
#
28
- if [[ " ${POWERLINE_COMPACT_AFTER_SEPARATOR} " -eq 0 ]]; then
29
- RIGHT_PROMPT+=" $( set_color - ${LAST_SEGMENT_COLOR} ) ${normal} "
28
+ if [[ " ${POWERLINE_COMPACT_AFTER_SEPARATOR:- 0 } " -eq 0 ]]; then
29
+ RIGHT_PROMPT+=" $( set_color - " ${LAST_SEGMENT_COLOR?} " ) ${normal} "
30
30
(( padding += 1 ))
31
31
fi
32
- if [[ " ${LAST_SEGMENT_COLOR} " -eq " ${params[1]} " ]]; then
33
- RIGHT_PROMPT+=" $( set_color - ${LAST_SEGMENT_COLOR} ) ${POWERLINE_RIGHT_SEPARATOR_SOFT}${normal} "
32
+ if [[ " ${LAST_SEGMENT_COLOR} " -eq " ${params[1]:- } " ]]; then
33
+ RIGHT_PROMPT+=" $( set_color - " ${LAST_SEGMENT_COLOR?} " ) ${POWERLINE_RIGHT_SEPARATOR_SOFT? }${normal? } "
34
34
else
35
- RIGHT_PROMPT+=" $( set_color ${params[1]} ${LAST_SEGMENT_COLOR} ) ${POWERLINE_RIGHT_SEPARATOR}${normal} "
35
+ RIGHT_PROMPT+=" $( set_color " ${params[1]:- } " " ${LAST_SEGMENT_COLOR?} " ) ${POWERLINE_RIGHT_SEPARATOR? }${normal? } "
36
36
fi
37
37
(( padding += 1 ))
38
38
fi
39
39
40
- RIGHT_PROMPT+=" $( set_color - ${params[1]} ) ${pad_before_segment}${params[0]}${normal} "
40
+ RIGHT_PROMPT+=" $( set_color - " ${params[1]:- } " ) ${pad_before_segment}${params[0]}${normal? } "
41
41
42
42
(( padding += ${# pad_before_segment} ))
43
43
(( padding += ${# params[0]} ))
44
44
45
45
(( RIGHT_PROMPT_LENGTH += padding))
46
- LAST_SEGMENT_COLOR=" ${params[1]} "
46
+ LAST_SEGMENT_COLOR=" ${params[1]:- } "
47
47
(( SEGMENTS_AT_RIGHT += 1 ))
48
48
}
49
49
50
50
function __powerline_right_first_segment_padding {
51
- RIGHT_PROMPT+=" $( set_color - ${LAST_SEGMENT_COLOR} ) ${normal} "
51
+ RIGHT_PROMPT+=" $( set_color - " ${LAST_SEGMENT_COLOR?} " ) ${normal? } "
52
52
(( RIGHT_PROMPT_LENGTH += 1 ))
53
53
}
54
54
55
55
function __powerline_prompt_command {
56
56
local last_status=" $? " # # always the first
57
- local move_cursor_rightmost=' \033[500C'
57
+ local move_cursor_rightmost=' \033[500C' info prompt
58
58
59
- LEFT_PROMPT=" "
60
- RIGHT_PROMPT=" "
61
- RIGHT_PROMPT_LENGTH=${POWERLINE_PADDING}
62
- SEGMENTS_AT_LEFT=0
63
- SEGMENTS_AT_RIGHT=0
64
- LAST_SEGMENT_COLOR=" "
59
+ local LEFT_PROMPT=" "
60
+ local RIGHT_PROMPT=" "
61
+ local RIGHT_PROMPT_LENGTH=${POWERLINE_PADDING? }
62
+ local SEGMENTS_AT_LEFT=0
63
+ local SEGMENTS_AT_RIGHT=0
64
+ local LAST_SEGMENT_COLOR=" "
65
65
66
66
_save-and-reload-history " ${HISTORY_AUTOSAVE:- 0} "
67
67
68
68
# # left prompt ##
69
- for segment in $POWERLINE_LEFT_PROMPT ; do
70
- local info=" $( __powerline_${segment} _prompt) "
69
+ for segment in ${ POWERLINE_LEFT_PROMPT?} ; do
70
+ info=" $( " __powerline_${segment} _prompt" ) "
71
71
[[ -n " ${info} " ]] && __powerline_left_segment " ${info} "
72
72
done
73
73
74
- if [[ -n " ${LEFT_PROMPT} " ]] && [[ " ${POWERLINE_COMPACT_AFTER_LAST_SEGMENT} " -eq 0 ]]; then
74
+ if [[ -n " ${LEFT_PROMPT:- } " ]] && [[ " ${POWERLINE_COMPACT_AFTER_LAST_SEGMENT:- 0 } " -eq 0 ]]; then
75
75
__powerline_left_last_segment_padding
76
76
fi
77
77
78
- [[ -n " ${LEFT_PROMPT} " ]] && LEFT_PROMPT+=" $( set_color ${LAST_SEGMENT_COLOR} -) ${POWERLINE_LEFT_END}${normal} "
78
+ [[ -n " ${LEFT_PROMPT:- } " ]] && LEFT_PROMPT+=" $( set_color " ${LAST_SEGMENT_COLOR?} " -) ${POWERLINE_LEFT_END? }${normal? } "
79
79
80
80
# # right prompt ##
81
81
if [[ -n " ${POWERLINE_RIGHT_PROMPT} " ]]; then
82
82
# LEFT_PROMPT+="${move_cursor_rightmost}"
83
83
for segment in $POWERLINE_RIGHT_PROMPT ; do
84
- local info=" $( __powerline_${segment} _prompt) "
84
+ info=" $( " __powerline_${segment} _prompt" ) "
85
85
[[ -n " ${info} " ]] && __powerline_right_segment " ${info} "
86
86
done
87
87
88
- if [[ -n " ${RIGHT_PROMPT} " ]] && [[ " ${POWERLINE_COMPACT_BEFORE_FIRST_SEGMENT} " -eq 0 ]]; then
88
+ if [[ -n " ${RIGHT_PROMPT:- } " ]] && [[ " ${POWERLINE_COMPACT_BEFORE_FIRST_SEGMENT:- 0 } " -eq 0 ]]; then
89
89
__powerline_right_first_segment_padding
90
90
fi
91
91
92
- RIGHT_PAD=$( printf " %.s " $( seq 1 $ RIGHT_PROMPT_LENGTH) )
92
+ RIGHT_PAD=$( printf " %.s " $( seq 1 " ${ RIGHT_PROMPT_LENGTH} " ) )
93
93
LEFT_PROMPT+=" ${RIGHT_PAD}${move_cursor_rightmost} "
94
94
LEFT_PROMPT+=" \033[$(( ${# RIGHT_PAD} - 1 )) D"
95
95
fi
96
96
97
- local prompt=" ${PROMPT_CHAR} "
98
- if [[ " ${POWERLINE_COMPACT_PROMPT} " -eq 0 ]]; then
97
+ prompt=" ${PROMPT_CHAR? } "
98
+ if [[ " ${POWERLINE_COMPACT_PROMPT:- 0 } " -eq 0 ]]; then
99
99
prompt+=" "
100
100
fi
101
101
102
- PS1=" ${LEFT_PROMPT}${RIGHT_PROMPT} \n$( __powerline_last_status_prompt ${last_status} ) ${prompt} "
103
-
104
- # # cleanup ##
105
- unset LAST_SEGMENT_COLOR \
106
- LEFT_PROMPT RIGHT_PROMPT RIGHT_PROMPT_LENGTH \
107
- SEGMENTS_AT_LEFT SEGMENTS_AT_RIGHT
102
+ PS1=" ${LEFT_PROMPT}${RIGHT_PROMPT} \n$( __powerline_last_status_prompt " ${last_status} " ) ${prompt} "
108
103
}
0 commit comments