mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-21 17:21:14 -03:00
When drawing a soft wrapped line, the last 2 characters of the previous line are redrawn. If these 2 characters are occupied by the prompt, they are replaced with ' '. Steps to reproduce: fish -C 'function fish_prompt; printf %0"$(math $COLUMNS)"d 0; end' # type anything # observe that the last two characters of the prompt have been deleted
49 lines
1.3 KiB
Fish
49 lines
1.3 KiB
Fish
#RUN: %fish %s
|
|
#REQUIRES: command -v tmux
|
|
|
|
set -g isolated_tmux_fish_extra_args -C '
|
|
function fish_prompt
|
|
printf "prompt $status_generation> <status=$status> <$prompt_var> "
|
|
set prompt_var ''
|
|
end
|
|
function on_prompt_var --on-variable prompt_var
|
|
commandline -f repaint
|
|
end
|
|
function token-info
|
|
__fish_echo echo "current token is <$(commandline -t)>"
|
|
end
|
|
bind ctrl-g token-info
|
|
'
|
|
|
|
isolated-tmux-start
|
|
|
|
isolated-tmux capture-pane -p
|
|
# CHECK: prompt 0> <status=0> <>
|
|
|
|
set -q CI && set sleep sleep 10
|
|
set -U prompt_var changed
|
|
tmux-sleep
|
|
isolated-tmux send-keys Enter
|
|
# CHECK: prompt 0> <status=0> <changed>
|
|
|
|
isolated-tmux send-keys echo Space 123
|
|
tmux-sleep
|
|
isolated-tmux send-keys C-g
|
|
tmux-sleep
|
|
isolated-tmux capture-pane -p
|
|
# CHECK: prompt 0> <status=0> <> echo 123
|
|
# CHECK: current token is <123>
|
|
# CHECK: prompt 0> <status=0> <> echo 123
|
|
|
|
isolated-tmux send-keys C-u '
|
|
function fish_prompt
|
|
printf "full line prompt\nhidden<----------------------------------------------two-last-characters-rendered->!!"
|
|
end' Enter C-l
|
|
isolated-tmux send-keys 'test "' Enter 'indent"'
|
|
tmux-sleep
|
|
isolated-tmux capture-pane -p
|
|
# CHECK: full line prompt
|
|
# CHECK: …<----------------------------------------------two-last-characters-rendered->!!
|
|
# CHECK: test "
|
|
# CHECK: indent"
|