blob: 49eadd8c9a53e471f8e9fd9b3a8053dee9f4ce4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
if status is-interactive
# Commands to run in interactive sessions can go here
end
fish_vi_key_bindings
function fish_user_key_bindings
for mode in insert default visual
bind -M $mode \cf forward-char
end
end
|