aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/down-or-search.fish
diff options
context:
space:
mode:
authorGravatar liljencrantz <liljencrantz@gmail.com>2007-09-22 00:11:21 +1000
committerGravatar liljencrantz <liljencrantz@gmail.com>2007-09-22 00:11:21 +1000
commit23755783103bc9a59392025b1f0feae8e8931a96 (patch)
tree39d78d795459300e53f746632e8d6a8bf435be3f /share/functions/down-or-search.fish
parent084c0c5f80ceca7e8db043d874907967e69c2d36 (diff)
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
Diffstat (limited to 'share/functions/down-or-search.fish')
-rw-r--r--share/functions/down-or-search.fish6
1 files changed, 2 insertions, 4 deletions
diff --git a/share/functions/down-or-search.fish b/share/functions/down-or-search.fish
index f8773666..c9e8b256 100644
--- a/share/functions/down-or-search.fish
+++ b/share/functions/down-or-search.fish
@@ -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