mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Add a few comments, remove debug message add function descriptions to up-or-search and down-or-search shellscript functions
darcs-hash:20070921141121-75c98-0c6b3970f766429ba5e5c674ab3f6283f1f8824c.gz
This commit is contained in:
parent
084c0c5f80
commit
2375578310
2 changed files with 6 additions and 5 deletions
|
@ -1,18 +1,16 @@
|
|||
function down-or-search
|
||||
function down-or-search -d "Depending on cursor position and current mode, either search forward or move down one line"
|
||||
# If we are already in search mode, continue
|
||||
if commandline --search-mode
|
||||
commandline -f history-search-forward
|
||||
return
|
||||
end
|
||||
|
||||
# We are not in search mode.
|
||||
# We are not already in search mode.
|
||||
# If we are on the bottom line, start search mode,
|
||||
# otherwise move down
|
||||
set lineno (commandline -L)
|
||||
set line_count (commandline|wc -l)
|
||||
|
||||
echo on line $lineno of $line_count >&2
|
||||
|
||||
switch $lineno
|
||||
case $line_count
|
||||
commandline -f history-search-forward
|
||||
|
|
|
@ -1,10 +1,13 @@
|
|||
function up-or-search
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue