peco_select_history can take initial query

pull/2/head
Tobias Johansson 10 years ago
parent 55b6a97b9e
commit 60b17c9c70

@ -1,9 +0,0 @@
Based directly on the percol plugin.
Please bind peco_select_history in your favorite key.
If you'd like to bind CTRL+R
function fish_user_key_bindings
bind \cr peco_select_history
end

@ -0,0 +1,13 @@
peco
----
Based directly on the percol plugin.
Please bind peco_select_history to your favorite key.
If you'd like to bind CTRL+R
```
function fish_user_key_bindings
bind \cr 'peco_select_history (commandline -b)'
end
```

@ -1,5 +1,12 @@
function peco_select_history
history|peco|read foo
if test (count $argv) = 0
set peco_flags --layout=bottom-up
else
set peco_flags --layout=bottom-up --query "$argv"
end
history|peco $peco_flags|read foo
if [ $foo ]
commandline $foo
else

Loading…
Cancel
Save