We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expected result: After history --merge commands in history should be shown in chronological order by the history command
history --merge
history
Actual result: merged commands are shown after commands from the current session.
To reproduce: Add save.fish to ~/.config/fish/functions
save.fish
~/.config/fish/functions
function save echo "- cmd:" $argv >> ~/.config/fish/fish_history echo " when:" (date "+%s") >> ~/.config/fish/fish_history history --merge end
Open a new shell and type the following
ls save test history
test appears below ls in the history, e.g.
save test ls test ...
fish, version 2.2.0-118-gaee71b5
The text was updated successfully, but these errors were encountered:
02cef2d
Finally fixed this. Thanks for reporting it!
Sorry, something went wrong.
history --merge to properly interleave items
28f2835
Fixes fish-shell#2312
ridiculousfish
No branches or pull requests
Expected result: After
history --merge
commands in history should be shown in chronological order by thehistory
commandActual result: merged commands are shown after commands from the current session.
To reproduce:
Add
save.fish
to~/.config/fish/functions
Open a new shell and type the following
test appears below ls in the history, e.g.
fish, version 2.2.0-118-gaee71b5
The text was updated successfully, but these errors were encountered: