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
|
2020-03-20 11:43:31 +00:00
|
|
|
set ttysettings (stty -g)
|
2020-03-04 21:01:23 +00:00
|
|
|
stty sane
|
|
|
|
__call_navi | perl -pe 'chomp if eof' | read -lz result
|
|
|
|
and commandline -- $result
|
2020-03-20 11:43:31 +00:00
|
|
|
|
|
|
|
stty $ttysettings
|
2020-03-04 21:01:23 +00:00
|
|
|
end
|
|
|
|
commandline -f repaint
|
|
|
|
end
|
|
|
|
|
|
|
|
bind \cg navi-widget
|
|
|
|
if bind -M insert > /dev/null 2>&1
|
|
|
|
bind -M insert \cg navi-widget
|
|
|
|
end
|