Files
dotfiles/fish/fish_user_key_bindings.fish
T
Henrik Bakken 7865c357ef updates
2021-03-04 20:24:40 +01:00

17 lines
420 B
Fish

function fish_user_key_bindings
for mode in insert default visual
bind -M $mode \cf forward-char
end
bind --preset _ beginning-of-line
bind -M insert \ew __fzf_reverse_isearch
bind -M insert \eo '__fzf_cd --hidden'
bind -M insert \eF __fzf_find_file
bind -M insert \ef __fzf_open
end
fzf_key_bindings
function ll --description 'List contents of directory using long format'
ls -lha $argv
end