Add history flushes on each command to the powerline themes.

pull/1883/head
Ira Abramov 2021-05-19 10:54:28 +03:00
parent 8c47706139
commit 9f4c71d40f
3 changed files with 3 additions and 0 deletions

View File

@ -60,6 +60,7 @@ function __powerline_prompt_command {
SEGMENTS_AT_LEFT=0 SEGMENTS_AT_LEFT=0
SEGMENTS_AT_RIGHT=0 SEGMENTS_AT_RIGHT=0
LAST_SEGMENT_COLOR="" LAST_SEGMENT_COLOR=""
_save-and-reload-history "${HISTORY_AUTOSAVE:-0}"
## left prompt ## ## left prompt ##
for segment in $POWERLINE_LEFT_PROMPT; do for segment in $POWERLINE_LEFT_PROMPT; do

View File

@ -26,6 +26,7 @@ function __powerline_left_segment {
LEFT_PROMPT+="$(set_color ${params[1]} -)${pad_before_segment}${params[0]}${normal}" LEFT_PROMPT+="$(set_color ${params[1]} -)${pad_before_segment}${params[0]}${normal}"
LAST_SEGMENT_COLOR=${params[1]} LAST_SEGMENT_COLOR=${params[1]}
(( SEGMENTS_AT_LEFT += 1 )) (( SEGMENTS_AT_LEFT += 1 ))
_save-and-reload-history "${HISTORY_AUTOSAVE:-0}"
} }
function __powerline_left_last_segment_padding { function __powerline_left_last_segment_padding {

View File

@ -255,6 +255,7 @@ function __powerline_prompt_command() {
LEFT_PROMPT="" LEFT_PROMPT=""
SEGMENTS_AT_LEFT=0 SEGMENTS_AT_LEFT=0
LAST_SEGMENT_COLOR="" LAST_SEGMENT_COLOR=""
save-and-reload-history "${HISTORY_AUTOSAVE:-0}"
if [[ -n "${POWERLINE_PROMPT_DISTRO_LOGO}" ]]; then if [[ -n "${POWERLINE_PROMPT_DISTRO_LOGO}" ]]; then
LEFT_PROMPT+="$(set_color "${PROMPT_DISTRO_LOGO_COLOR}" "${PROMPT_DISTRO_LOGO_COLORBG}")${PROMPT_DISTRO_LOGO}$(set_color - -)" LEFT_PROMPT+="$(set_color "${PROMPT_DISTRO_LOGO_COLOR}" "${PROMPT_DISTRO_LOGO_COLORBG}")${PROMPT_DISTRO_LOGO}$(set_color - -)"