mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 23:47:25 +00:00
2375578310
darcs-hash:20070921141121-75c98-0c6b3970f766429ba5e5c674ab3f6283f1f8824c.gz
20 lines
502 B
Fish
20 lines
502 B
Fish
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
|
|
|
|
# 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
|
|
|
|
case '*'
|
|
commandline -f up-line
|
|
end
|
|
end
|