peco_select_history can take initial query

This commit is contained in:
Tobias Johansson 2015-01-16 09:01:28 +01:00
parent 55b6a97b9e
commit 60b17c9c70
3 changed files with 21 additions and 10 deletions

View File

@ -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

13
plugins/peco/README.md Normal file
View File

@ -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
```

View File

@ -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