navi/navi.plugin.fish
Denis Isidoro 8f2bc5f7e7
Fish: fix widget (#174)
Fixes #170 and #171
2020-01-17 14:41:23 -03:00

13 lines
334 B
Fish

function navi-widget -d "Show cheat sheets"
begin
stty sane
env NAVI_USE_FZF_ALL_INPUTS=true navi --print (commandline) | 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