Commit 418cb4fc authored by Bruno's avatar Bruno

Merge pull request #33 from osamu2001/master

percol plugin
parents 10eee1d4 00a2cef9
Please bind percol_select_history in your favorite key.
If you'd like to bind CTRL+R
function fish_user_key_bindings
bind \cr percol_select_history
end
function percol_select_history
history|percol|read foo
if [ $foo ]
commandline $foo
else
commandline ''
end
end
# ~/.oh-my-fish/custom/*.load
# function fish_user_key_bindings
# bind \cr percol_select_history
# end
function percol_select_history
history|percol|read foo
if [ $foo ]
commandline $foo
else
commandline ''
end
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment