2007-09-21 14:11:21 +00:00
|
|
|
function up-or-search -d "Depending on cursor position and current mode, either search backward or move up one line"
|
2007-09-21 14:05:49 +00:00
|
|
|
# If we are already in search mode, continue
|
|
|
|
if commandline --search-mode
|
|
|
|
commandline -f history-search-backward
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2007-09-21 14:11:21 +00:00
|
|
|
# We are not already in search mode.
|
|
|
|
# If we are on the top line, start search mode,
|
|
|
|
# otherwise move up
|
2007-09-21 14:05:49 +00:00
|
|
|
set lineno (commandline -L)
|
|
|
|
|
|
|
|
switch $lineno
|
|
|
|
case 1
|
|
|
|
commandline -f history-search-backward
|
|
|
|
|
|
|
|
case '*'
|
|
|
|
commandline -f up-line
|
|
|
|
end
|
|
|
|
end
|