AutoYADM commit: 2025-03-31 13:55:18

This commit is contained in:
Daniel Fichtinger 2025-03-31 13:55:18 -04:00
parent 4151b93e62
commit 4f1e3ed97d
3 changed files with 4 additions and 2 deletions

View file

@ -1,6 +1,6 @@
function fish_should_add_to_history
string match -q ' *' -- $argv; and return 1
for cmd in ls clear
for cmd in ls clear fg
string match -qr "^$cmd" -- $argv; and return 1
end
return 0

View file

@ -1,6 +1,8 @@
function fish_user_key_bindings
fish_vi_key_bindings
bind -M insert ctrl-a beginning-of-line
bind -M insert ctrl-l end-of-line
bind -M insert ctrl-b backward-word
bind -M insert ctrl-w forward-word
bind -M insert ctrl-d backward-kill-word