Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion themes/powerline/powerline.base.bash
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ function __powerline_left_last_segment_padding() {
}

function __powerline_last_status_prompt() {
if [[ "${1?}" -ne 0 ]]; then
if [[ "${1:-0}" -ne 0 ]]; then
printf '%s|%s' "${1}" "${LAST_STATUS_THEME_PROMPT_COLOR-"52"}"
fi
}
Expand Down
Loading