This commit is contained in:
Henrik Bakken
2021-03-04 20:24:40 +01:00
parent c452826815
commit 7865c357ef
13 changed files with 117 additions and 99 deletions
+11 -5
View File
@@ -1,10 +1,16 @@
function fish_user_key_bindings
for mode in insert default visual
bind -M $mode \cf forward-char
end
bind --preset _ beginning-of-line
bind \eh __fzf_reverse_isearch
bind \eF __fzf_open
bind -M insert \ec '__fzf_cd --hidden'
bind -M insert \ep __fzf_find_file
bind -M insert \ef '__fzf_open --editor'
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