fish-shell/share/completions/j.fish
2020-01-22 17:43:18 +01:00

12 lines
420 B
Fish

function __history_completions --argument limit
if string match -q "" -- "$limit"
set limit 25
end
set -l tokens (commandline --current-process --tokenize)
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