mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
a3e20a4d38
"function --argument" is not a thing, it's "--argument-names". This only accidentally works because our getopt is awful and allows abbreviated long options. Similarly, one argparse test used "--d" instead of "-d" or "--def".
12 lines
426 B
Fish
12 lines
426 B
Fish
function __history_completions --argument-names 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
|