aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/fish_vi_mode.fish
blob: b4fbe63a7aa9d0aea76307c5cc8c725d4d389f63 (plain)
1
2
3
4
5
6
7
8
function fish_vi_mode
  # Set the __fish_vi_mode variable
  # This triggers fish_mode_prompt to output the mode indicator
  set -g __fish_vi_mode 1
  
  # Turn on vi keybindings
  set -g fish_key_bindings fish_vi_key_bindings
end