Skip to content

Instantly share code, notes, and snippets.

@malthejorgensen
Last active December 18, 2021 01:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save malthejorgensen/c28017b317ee1e9027a361553eb3c2e5 to your computer and use it in GitHub Desktop.
Save malthejorgensen/c28017b317ee1e9027a361553eb3c2e5 to your computer and use it in GitHub Desktop.
auto-updating-fish-prompt
# fish shell: Update both normal prompt and right prompt when executing a command
#
# This hook can be used to ensure e.g. a branch name in the main prompt and
# a timestamp in the right prompt reflects when the command was actually
# run, rather than when the prompt was printed.
#
# This version tries to handle multi-line commands, but doesn't print the
# `fish_right_prompt` when doing so.
function reprint_prompt --on-event fish_preexec
set -l _prompt (fish_prompt)
set -l _command (fish_indent --no-indent --ansi (echo -n "$argv" | psub))
set -l _right_prompt (fish_right_prompt | tr -d '\n')
set -l _len_right_prompt (string length $_right_prompt)
# Note that both emoji and ANSI escape chars (like colors) in the prompt messes up the length here.
set -l _len_prompt (string length "$_prompt")
# `string length` counts the ANSI escape chars, so we take the raw command.
set -l _len_command (string length "$argv")
set -l _num_lines (math 'ceil(('$_len_prompt + $_len_command')' / $COLUMNS')')
# Debug output:
# echo -e -n "\033[10F --> "$_len_prompt $_prompt $_len_command $_command $_num_lines" <--"
# echo -e -n "\033[10B"
# Go to previous line (\033[F), clear line and print current time, then go to start of line (\r)
# Clearing the line is necessary in cases where the prompt has gotten shorter, since it
# was first printed (e.g. shorter git branch name). In that case, without clearing,
# parts of the old prompt or command would hang around.
echo -e -n "\033["$_num_lines"F"(string repeat --no-newline --count (math $COLUMNS - $_len_right_prompt) ' ')$_right_prompt'\r'
# Print prompt (to get current git branch)
echo "$_prompt""$_command"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment