1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
@c This file is automatically created from ``options.op''; don't change
@c this file, change ``options.op'' instead.
@c *********************************************************************
@node Options
@chapter Options
@menu
* mode:: transfer mode for downloads
* tag-char:: char to mark tagged files with
* hist-size:: size of ftp command/response history
* beep:: beep after some commands
* scroll-limit:: minimum overlap for scrolling lists
* emacs-status:: Emacs like status line
* pager:: pager used to view files
* sort:: sort criterium for directory listings
* wrap:: wrap around bottom/top when scrolling
@end menu
@c ---------------------------------------------------------------------
@node mode
@section mode -- transfer mode for downloads
@cindex mode
@itemize @bullet
@item
Option: mode
@item
Short: mo
@item
Default: 'i'
@end itemize
Transfer mode used for downloads; set to `i' for image (binary), `a'
for ascii.
@c ---------------------------------------------------------------------
@node tag-char
@section tag-char -- char to mark tagged files with
@cindex tag-char
@itemize @bullet
@item
Option: tag-char
@item
Short: tc
@item
Default: '>'
@end itemize
Tagged files in the current directory are marked with this character
in the first column.
@c ---------------------------------------------------------------------
@node hist-size
@section hist-size -- size of ftp command/response history
@cindex hist-size
@itemize @bullet
@item
Option: hist-size
@item
Short: hs
@item
Default: 200
@end itemize
Specifies how many lines of ftp commands and responses exchanged
with the ftp server to remember. Remembered lines can be displayed
with @code{response}. @xref{response}
@c ---------------------------------------------------------------------
@node beep
@section beep -- beep after some commands
@cindex beep
@itemize @bullet
@item
Option: beep
@item
Short: bp
@item
Default: 0
@end itemize
Tells cftp to beep after completing some commands, e. g. downloading
tagged files.
@c ---------------------------------------------------------------------
@node scroll-limit
@section scroll-limit -- minimum overlap for scrolling lists
@cindex scroll-limit
@itemize @bullet
@item
Option: scroll-limit
@item
Short: sl
@item
Default: 0
@end itemize
Don't scroll lists if overlap of old and new positions is less than
@code{scroll-limit} lines; make a full redraw instead.
@c ---------------------------------------------------------------------
@node emacs-status
@section emacs-status -- Emacs like status line
@cindex emacs-status
@itemize @bullet
@item
Option: emacs-status
@item
Short: es
@item
Default: 1
@end itemize
If set, status line appears at the bottom of the screen -- right
above the message area -- in standout mode. If unset, it is displayed
at top of screen, with blank lines surrounding the scrolling region.
@c ---------------------------------------------------------------------
@node pager
@section pager -- pager used to view files
@cindex pager
@itemize @bullet
@item
Option: pager
@item
Short: pg
@item
Default: "more"
@end itemize
Pager used to view files. Defaults to the value of the environment
variable @code{$PAGER} if set, to @code{more} otherwise.
@c ---------------------------------------------------------------------
@node sort
@section sort -- sort criterium for directory listings
@cindex sort
@itemize @bullet
@item
Option: sort
@item
Short: so
@item
Default: 1
@end itemize
Set how to sort directory listings; possible values are
@table @code
@item none
list as returned by ftp server
@item name
alphabetically by file name
@item date
chronologically by modification time, newest first
@item name-r
alphabetically by file name, in reverse order
@item date-r
chronologically by modification time, oldest first
@end table
@c ---------------------------------------------------------------------
@node wrap
@section wrap -- wrap around bottom/top when scrolling
@cindex wrap
@itemize @bullet
@item
Option: wrap
@item
Short: wa
@item
Default: 1
@end itemize
If set, scrolling wraps around bottom/top when scrolling.
|