Set semi colon to clear as ctrl-l will now be used for tmux navigation.

This commit is contained in:
Shawn Anderson 2024-05-08 20:13:15 -07:00
parent 3542559a12
commit 28584a89c0
1 changed files with 8 additions and 1 deletions

View File

@ -11,9 +11,16 @@ bind \er 'exec fish'
bind \cg delete-char
# What does this do relative to the above?
bind \cd delete
# bind \cd delete
# Replace <C-a> with <Alt-a> because <C-a> is used as tmux leader key.
# Note: Consider alternatives
bind \ea beginning-of-line
# Clear and reprompt
function clear_and_prompt
clear
commandline -f repaint
end
bind \; clear_and_prompt