mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
Fix --merge hitting a case
This commit is contained in:
parent
81cdceddd3
commit
a6565bbea8
1 changed files with 3 additions and 2 deletions
|
@ -34,12 +34,13 @@ function history --description "Deletes an item from history"
|
|||
set cmd clear
|
||||
case --search
|
||||
set cmd print
|
||||
case --merge
|
||||
case --
|
||||
set -e argv[$i]
|
||||
break
|
||||
case -* --*
|
||||
case "-*" "--*"
|
||||
printf ( _ "%s: invalid option -- %s\n" ) history $argv[1] >& 2
|
||||
return 1
|
||||
return
|
||||
end
|
||||
end
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue