navi/navi.plugin.fish

14 lines
340 B
Fish
Raw Normal View History

2019-10-14 19:44:52 +03:00
function navi-widget -d "Show cheat sheets"
begin
stty sane
env NAVI_USE_FZF_ALL_INPUTS=true navi --print query (commandline) | perl -pe 'chomp if eof' | read -lz result
and commandline -- $result
2019-10-11 20:33:16 +03:00
end
2019-10-14 19:44:52 +03:00
commandline -f repaint
end
2019-10-11 20:33:16 +03:00
2019-10-14 19:44:52 +03:00
bind \cg navi-widget
if bind -M insert > /dev/null 2>&1
bind -M insert \cg navi-widget
2019-10-11 20:33:16 +03:00
end