navi/shell/navi.plugin.fish
2020-03-20 12:43:31 +01:00

22 lines
404 B
Fish

#!/usr/bin/env fish
function __call_navi
navi --print
end
function navi-widget -d "Show cheat sheets"
begin
set ttysettings (stty -g)
stty sane
__call_navi | perl -pe 'chomp if eof' | read -lz result
and commandline -- $result
stty $ttysettings
end
commandline -f repaint
end
bind \cg navi-widget
if bind -M insert > /dev/null 2>&1
bind -M insert \cg navi-widget
end