diff --git a/.config/fish/functions/fish_user_key_bindings.fish b/.config/fish/functions/fish_user_key_bindings.fish index 7dd13211..752c39f8 100755 --- a/.config/fish/functions/fish_user_key_bindings.fish +++ b/.config/fish/functions/fish_user_key_bindings.fish @@ -8,4 +8,12 @@ function fish_user_key_bindings bind -M default g,m beginning-of-line bind -M default g,i end-of-line bind g,l end-of-buffer + + bind U redo + bind -m insert ctrl-r history-pager repaint-mode + bind e up-or-search + bind n down-or-search + bind l 'set fish_cursor_end_mode exclusive' forward-single-char forward-word backward-char 'set fish_cursor_end_mode inclusive' + bind L 'set fish_cursor_end_mode exclusive' forward-single-char forward-bigword backward-char 'set fish_cursor_end_mode inclusive' + end