mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
merge fish histories in open shells
This commit is contained in:
parent
4ea1235c9c
commit
9914eae230
29
fish.configlink/functions/up-or-search.fish
Normal file
29
fish.configlink/functions/up-or-search.fish
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# by @farcaller from https://github.com/fish-shell/fish-shell/issues/825#issuecomment-440286038
|
||||||
|
|
||||||
|
function up-or-search -d "Depending on cursor position and current mode, either search backward or move up one line"
|
||||||
|
# If we are already in search mode, continue
|
||||||
|
if commandline --search-mode
|
||||||
|
commandline -f history-search-backward
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
# If we are navigating the pager, then up always navigates
|
||||||
|
if commandline --paging-mode
|
||||||
|
commandline -f up-line
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
# We are not already in search mode.
|
||||||
|
# If we are on the top line, start search mode,
|
||||||
|
# otherwise move up
|
||||||
|
set lineno (commandline -L)
|
||||||
|
|
||||||
|
switch $lineno
|
||||||
|
case 1
|
||||||
|
commandline -f history-search-backward
|
||||||
|
history merge # <-- ADDED THIS
|
||||||
|
|
||||||
|
case '*'
|
||||||
|
commandline -f up-line
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue
Block a user