navi/shell/navi.plugin.fish

20 lines
351 B
Fish
Raw Normal View History

2020-03-04 21:01:23 +00:00
#!/usr/bin/env fish
function __call_navi
2020-03-07 21:03:51 +00:00
navi --print
2020-03-04 21:01:23 +00:00
end
function navi-widget -d "Show cheat sheets"
begin
stty sane
__call_navi | perl -pe 'chomp if eof' | read -lz result
and commandline -- $result
end
commandline -f repaint
end
bind \cg navi-widget
if bind -M insert > /dev/null 2>&1
bind -M insert \cg navi-widget
end