fish: set cursor to line, update keybind since it was not recognized by

tmux
This commit is contained in:
2025-07-10 20:09:15 +02:00
parent 13f86cf048
commit f2a1fc853f
3 changed files with 3 additions and 3 deletions

View File

@@ -8,5 +8,5 @@ bind k 'if commandline --paging-mode; commandline --function up-line; else; comm
# tmux-sessionizer (Ctrl+n)
bind ctrl-n 'tmux-sessionizer'
bind shift-enter 'accept-autosuggestion'
bind : 'accept-autosuggestion'

View File

@@ -1,3 +1,3 @@
if status is-interactive
echo -ne "\e[6 q" # Set cursor to a line (bar) style
# Commands to run in interactive sessions can go here
end

View File

@@ -86,5 +86,5 @@ function fish_prompt
end
end
echo -n -s ' '$cwd $repo_info $normal ' '
echo -n -s -e ' '$cwd $repo_info $normal ' \e[6 q'
end