mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-29 06:13:20 +00:00
29f35d6cdf
This gives us more accurate completions because completion scripts get expanded paths
12 lines
431 B
Fish
12 lines
431 B
Fish
function __history_completions --argument-names limit
|
|
if string match -q "" -- "$limit"
|
|
set limit 25
|
|
end
|
|
|
|
set -l tokens (commandline --current-process --expand-tokens)
|
|
history --prefix (commandline) | string replace -r \^$tokens[1]\\s\* "" | head -n$limit
|
|
end
|
|
|
|
# erase the stock autojump completions, which are no longer needed with this
|
|
complete -c j -e
|
|
complete -k -c j -a '(__history_completions 25)' -f
|