dotfiles/.config/fish/functions/__history_previous_command_arguments.fish

9 lines
198 B
Fish

function __history_previous_command_arguments
switch (commandline -t)
case "!"
commandline -t ""
commandline -f history-token-search-backward
case "*"
commandline -i '$'
end
end