fish-shell/share/completions/j.fish
Johannes Altmanninger 33a9659cd1 Fix stale name of --tokens-expand option
Missed in 368017905 (builtin commandline: -x for expanded tokens, supplanting
-o, 2024-01-06).
2024-01-27 20:09:33 +01:00

13 lines
433 B
Fish

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