blob: 4245b634830f0b1533d8c4d5b2d178631f37f2ff [file] [log] [blame]
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001*message.txt* For Vim version 7.0aa. Last change: 2004 Aug 26
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7This file contains an alphabetical list of messages and error messages that
8Vim produces. You can use this if you don't understand what the message
9means. It is not complete though.
10
111. Old messages |:messages|
122. Error messages |error-messages|
133. Messages |messages|
14
15==============================================================================
161. Old messages *:messages* *:mes* *message-history*
17
18The ":messages" command can be used to view previously given messages. This
19is especially useful when messages have been overwritten or truncated. This
20depends on the 'shortmess' option.
21
22The number of remembered messages is fixed at 20.
23
24If you are using translated messages, the first printed line tells who
25maintains the messages or the translations. You can use this to contact the
26maintainer when you spot a mistake.
27
28If you want to find help on a specific (error) message, use the ID at the
29start of the message. For example, to get help on the message: >
30
31 E72: Close error on swap file
32
33or (translated): >
34
35 E72: Errore durante chiusura swap file
36
37Use: >
38
39 :help E72
40
41If you are lazy, it also works without the shift key: >
42
43 :help e72
44
45==============================================================================
462. Error messages *error-messages*
47
48When an error message is displayed, but it is removed before you could read
49it, you can see it again with: >
50 :echo errmsg
51or view a list of recent messages with: >
52 :messages
53
54
55LIST OF MESSAGES
56 *E222* *E228* *E232* *E256* *E293* *E298* *E304* *E317*
57 *E318* *E356* *E438* *E439* *E440* *E316* *E320* *E322*
58 *E323* *E341* *E473* *E570* >
59 Add to read buffer
60 makemap: Illegal mode
61 Cannot create BalloonEval with both message and callback
62 Hangul automata ERROR
63 block was not locked
64 Didn't get block nr {N}?
65 ml_timestamp: Didn't get block 0??
66 pointer block id wrong {N}
67 Updated too many blocks?
68 get_varp ERROR
69 u_undo: line numbers wrong
70 undo list corrupt
71 undo line missing
72 ml_get: cannot find line {N}
73 cannot find line {N}
74 line number out of range: {N} past the end
75 line count wrong in block {N}
76 Internal error
77 fatal error in cs_manage_matches
78
79This is an internal error. If you can reproduce it, please send in a bug
80report. |bugs|
81
82>
83 ATTENTION
84 Found a swap file by the name ...
85
86See |ATTENTION|.
87
88 *E92* >
89 Buffer {N} not found
90
91The buffer you requested does not exist. This can also happen when you have
92wiped out a buffer which contains a mark or is referenced in another way.
93|:bwipeout|
94
95 *E95* >
96 Buffer with this name already exists
97
98You cannot have two buffers with the same name.
99
100 *E72* >
101 Close error on swap file
102
103The |swap-file|, that is used to keep a copy of the edited text, could not be
104closed properly. Mostly harmless.
105
106 *E169* >
107 Command too recursive
108
109This happens when an Ex command executes an Ex command that executes an Ex
110command, etc. This is only allowed 200 times. When it's more there probably
111is an endless loop. Probably a |:execute| or |:source| command is involved.
112
113 *E254* >
114 Cannot allocate color {name}
115
116The color name {name} is unknown. See |gui-colors| for a list of colors that
117are available on most systems.
118
119 *E458* >
120 Cannot allocate colormap entry for "xxxx"
121 Cannot allocate colormap entry, some colors may be incorrect
122
123This means that there are not enough colors available for Vim. It will still
124run, but some of the colors will not appear in the specified color. Try
125stopping other applications that use many colors, or start them after starting
126gvim.
127Netscape is known to consume a lot of colors. You can avoid this by telling
128it to use its own colormap: >
129 netscape -install
130Or tell it to limit to a certain number of colors (64 should work well): >
131 netscape -ncols 64
132This can also be done with a line in your Xdefaults file: >
133 Netscape*installColormap: Yes
134or >
135 Netscape*maxImageColors: 64
136<
137 *E79* >
138 Cannot expand wildcards
139
140A filename contains a strange combination of characters, which causes Vim to
141attempt expanding wildcards but this fails. This does NOT mean that no
142matching file names could be found, but that the pattern was illegal.
143
144 *E459* >
145 Cannot go back to previous directory
146
147While expanding a file name, Vim failed to go back to the previously used
148directory. All file names being used may be invalid now! You need to have
149execute permission on the current directory.
150
151 *E190* *E212* >
152 Cannot open "{filename}" for writing
153 Can't open file for writing
154
155For some reason the file you are writing to cannot be created or overwritten.
156The reason could be that you do not have permission to write in the directory
157or the file name is not valid.
158
159 *E166* >
160 Can't open linked file for writing
161
162You are trying to write to a file which can't be overwritten, and the file is
163a link (either a hard link or a symbolic link). Writing might still be
164possible if the directory that contains the link or the file is writable, but
165Vim now doesn't know if you want to delete the link and write the file in its
166place, or if you want to delete the file itself and write the new file in its
167place. If you really want to write the file under this name, you have to
168manually delete the link or the file, or change the permissions so that Vim
169can overwrite.
170
171 *E46* >
172 Cannot set read-only variable "{name}"
173
174You are trying to assign a value to an argument of a function |a:var| or a Vim
175internal variable |v:var| which is read-only.
176
177 *E90* >
178 Cannot unload last buffer
179
180Vim always requires one buffer to be loaded, otherwise there would be nothing
181to display in the window.
182
183 *E40* >
184 Can't open errorfile <filename>
185
186When using the ":make" or ":grep" commands: The file used to save the error
187messages or grep output cannot be opened. This can have several causes:
188- 'shellredir' has a wrong value.
189- The shell changes directory, causing the error file to be written in another
190 directory. This could be fixed by changing 'makeef', but then the make
191 command is still executed in the wrong directory.
192- 'makeef' has a wrong value.
193- The 'grepprg' or 'makeprg' could not be executed. This cannot always be
194 detected (especially on MS-Windows). Check your $PATH.
195
196 >
197 Can't open file C:\TEMP\VIoD243.TMP
198
199On MS-Windows, this message appears when the output of an external command was
200to be read, but the command didn't run successfully. This can be caused by
201many things. Check the 'shell', 'shellquote', 'shellxquote', 'shellslash' and
202related options. It might also be that the external command was not found,
203there is no different error message for that.
204
205 *E12* >
206 Command not allowed from exrc/vimrc in current dir or tag search
207
208Some commands are not allowed for security reasons. These commands mostly
209come from a .exrc or .vimrc file in the current directory, or from a tags
210file. Also see 'secure'.
211
212 *E74* >
213 Command too complex
214
215A mapping resulted in a very long command string. Could be caused by a
216mapping that indirectly calls itself.
217
218>
219 CONVERSION ERROR
220
221When writing a file and the text "CONVERSION ERROR" appears, this means that
222some bits were lost when converting text from the internally used UTF-8 to the
223format of the file. The file will not be marked unmodified. If you care
224about the loss of information, set the 'fileencoding' option to another value
225that can handle the characters in the buffer and write again. If you don't
226care, you can abandon the buffer or reset the 'modified' option.
227
228 *E302* >
229 Could not rename swap file
230
231When the file name changes, Vim tries to rename the |swap-file| as well.
232This failed and the old swap file is now still used. Mostly harmless.
233
234 *E43* *E44* >
235 Damaged match string
236 Corrupted regexp program
237
238Something inside Vim went wrong and resulted in a corrupted regexp. If you
239know how to reproduce this problem, please report it. |bugs|
240
241 *E208* *E209* *E210* >
242 Error writing to "{filename}"
243 Error closing "{filename}"
244 Error reading "{filename}"
245
246This occurs when Vim is trying to rename a file, but a simple change of file
247name doesn't work. Then the file will be copied, but somehow this failed.
248The result may be that both the original file and the destination file exist
249and the destination file may be incomplete.
250
251>
252 Vim: Error reading input, exiting...
253
254This occurs when Vim cannot read typed characters while input is required.
255Vim got stuck, the only thing it can do is exit. This can happen when both
256stdin and stderr are redirected and executing a script that doesn't exit Vim.
257
258 *E47* >
259 Error while reading errorfile
260
261Reading the error file was not possible. This is NOT caused by an error
262message that was not recognized.
263
264 *E80* >
265 Error while writing
266
267Writing a file was not completed successfully. The file is probably
268incomplete.
269
270 *E13* *E189* >
271 File exists (use ! to override)
272 "{filename}" exists (use ! to override)
273
274You are protected from accidentally overwriting a file. When you want to
275write anyway, use the same command, but add a "!" just after the command.
276Example: >
277 :w /tmp/test
278changes to: >
279 :w! /tmp/test
280<
281 *E139* >
282 File is loaded in another buffer
283
284You are trying to write a file under a name which is also used in another
285buffer. This would result in two versions of the same file.
286
287 *E142* >
288 File not written: Writing is disabled by 'write' option
289
290The 'write' option is off. This makes all commands that try to write a file
291generate this message. This could be caused by a |-m| commandline argument.
292You can switch the 'write' option on with ":set write".
293
294 *E25* >
295 GUI cannot be used: Not enabled at compile time
296
297You are running a version of Vim that doesn't include the GUI code. Therefore
298"gvim" and ":gui" don't work.
299
300 *E49* >
301 Invalid scroll size
302
303This is caused by setting an invalid value for the 'scroll', 'scrolljump' or
304'scrolloff' options.
305
306 *E17* >
307 "{filename}" is a directory
308
309You tried to write a file with the name of a directory. This is not possible.
310You probably need to append a file name.
311
312 *E19* >
313 Mark has invalid line number
314
315You are using a mark that has a line number that doesn't exist. This can
316happen when you have a mark in another file, and some other program has
317deleted lines from it.
318
319 *E219* *E220* >
320 Missing {.
321 Missing }.
322
323Using a {} construct in a file name, but there is a { without a matching } or
324the other way around. It should be used like this: {foo,bar}. This matches
325"foo" and "bar".
326
327 *E315* >
328 ml_get: invalid lnum:
329
330This is an internal Vim error. Please try to find out how it can be
331reproduced, and submit a bug report |bugreport.vim|.
332
333 *E173* >
334 {number} more files to edit
335
336You are trying to exit, while the last item in the argument list has not been
337edited. This protects you from accidentally exiting when you still have more
338files to work on. See |argument-list|. If you do want to exit, just do it
339again and it will work.
340
341 *E23* *E194* >
342 No alternate file
343 No alternate file name to substitute for '#'
344
345The alternate file is not defined yet. See |alternate-file|.
346
347 *E32* >
348 No file name
349
350The current buffer has no name. To write it, use ":w fname". Or give the
351buffer a name with ":file fname".
352
353 *E141* >
354 No file name for buffer {number}
355
356One of the buffers that was changed does not have a file name. Therefore it
357cannot be written. You need to give the buffer a file name: >
358 :buffer {number}
359 :file {filename}
360<
361 *E33* >
362 No previous substitute regular expression
363
364When using the '~' character in a pattern, it is replaced with the previously
365used pattern in a ":substitute" command. This fails when no such command has
366been used yet. See |/~|.
367
368 *E35* >
369 No previous regular expression
370
371When using an empty search pattern, the previous search pattern is used. But
372that is not possible if there was no previous search.
373
374 *E24* >
375 No such abbreviation
376
377You have used an ":unabbreviate" command with an argument which is not an
378existing abbreviation. All variations of this command give the same message:
379":cunabbrev", ":iunabbrev", etc. Check for trailing white space.
380
381>
382 /dev/dsp: No such file or directory
383
384Only given for GTK GUI with Gnome support. Gnome tries to use the audio
385device and it isn't present. You can ignore this error.
386
387 *E31* >
388 No such mapping
389
390You have used an ":unmap" command with an argument which is not an existing
391mapping. All variations of this command give the same message: ":cunmap",
392":unmap!", etc. Check for trailing white space.
393
394 *E37* *E89* >
395 No write since last change (use ! to override)
396 No write since last change for buffer {N} (use ! to override)
397
398You are trying to |abandon| a file that has changes. Vim protects you from
399losing your work. You can either write the changed file with ":w", or, if you
400are sure, |abandon| it anyway, and lose all the changes. This can be done by
401adding a '!' character just after the command you used. Example: >
402 :e other_file
403changes to: >
404 :e! other_file
405<
406 *E162* >
407 No write since last change for buffer "{name}"
408
409This appears when you try to exit Vim while some buffers are changed. You
410will either have to write the changed buffer (with |:w|), or use a command to
411abandon the buffer forcefully, e.g., with ":qa!". Careful, make sure you
412don't throw away changes you really want to keep. You might have forgotten
413about a buffer, especially when 'hidden' is set.
414
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000415>
416 [No write since last change]
417
418This appears when executing a shell command while at least one buffer was
419changed. To avoid the message reset the 'warn' option.
420
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421 *E38* >
422 Null argument
423
424Something inside Vim went wrong and resulted in a NULL pointer. If you know
425how to reproduce this problem, please report it. |bugs|
426
427 *E172* >
428 Only one file name allowed
429
430The ":edit" command only accepts one file name. When you want to specify
431several files for editing use ":next" |:next|.
432
433 *E41* *E82* *E83* *E342* >
434 Out of memory!
435 Out of memory! (allocating {number} bytes)
436 Cannot allocate any buffer, exiting...
437 Cannot allocate buffer, using other one...
438
439Oh, oh. You must have been doing something complicated, or some other program
440is consuming your memory. Be careful! Vim is not completely prepared for an
441out-of-memory situation. First make sure that any changes are saved. Then
442try to solve the memory shortage. To stay on the safe side, exit Vim and
443start again. Also see |msdos-limitations|.
444
445 *E339* >
446 Pattern too long
447
448This only happens on systems with 16 bit ints: The compiled regexp pattern is
449longer than about 65000 characters. Try using a shorter pattern.
450
451 *E45* >
452 'readonly' option is set (use ! to override)
453
454You are trying to write a file that was marked as read-only. To write the
455file anyway, either reset the 'readonly' option, or add a '!' character just
456after the command you used. Example: >
457 :w
458changes to: >
459 :w!
460<
461 *E294* *E295* *E301* >
462 Read error in swap file
463 Seek error in swap file read
464 Oops, lost the swap file!!!
465
466Vim tried to read text from the |swap-file|, but something went wrong. The
467text in the related buffer may now be corrupted! Check carefully before you
468write a buffer. You may want to write it in another file and check for
469differences.
470
471 *E192* >
472 Recursive use of :normal too deep
473
474You are using a ":normal" command, whose argument again uses a ":normal"
475command in a recursive way. This is restricted to 'maxmapdepth' levels. This
476example illustrates how to get this message: >
477 :map gq :normal gq<CR>
478If you type "gq", it will execute this mapping, which will call "gq" again.
479
480 *E22* >
481 Scripts nested too deep
482
483Scripts can be read with the "-s" command-line argument and with the ":source"
484command. The script can then again read another script. This can continue
485for about 14 levels. When more nesting is done, Vim assumes that there is a
486recursive loop somewhere and stops with this error message.
487
488 *E319* >
489 Sorry, the command is not available in this version
490
491You have used a command that is not present in the version of Vim you are
492using. When compiling Vim, many different features can be enabled or
493disabled. This depends on how big Vim has chosen to be and the operating
494system. See |+feature-list| for when which feature is available. The
495|:version| command shows which feature Vim was compiled with.
496
497 *E300* >
498 Swap file already exists (symlink attack?)
499
500This message appears when Vim is trying to open a swap file and finds it
501already exists or finds a symbolic link in its place. This shouldn't happen,
502because Vim already checked that the file doesn't exist. Either someone else
503opened the same file at exactly the same moment (very unlikely) or someone is
504attempting a symlink attack (could happen when editing a file in /tmp or when
505'directory' starts with "/tmp", which is a bad choice).
506
507 *E432* >
508 Tags file not sorted: {file name}
509
510Vim (and Vi) expect tags files to be sorted in ASCII order. Binary searching
511can then be used, which is a lot faster than a linear search. If your tags
512files are not properly sorted, reset the |'tagbsearch'| option.
513This message is only given when Vim detects a problem when searching for a
514tag. Sometimes this message is not given, even thought the tags file is not
515properly sorted.
516
517 *E460* >
518 The resource fork would be lost (add ! to override)
519
520On the Macintosh (classic), when writing a file, Vim attempts to preserve all
521info about a file, including its resource fork. If this is not possible you
522get this error message. Append "!" to the command name to write anyway (and
523lose the info).
524
525 *E424* >
526 Too many different highlighting attributes in use
527
528Vim can only handle about 223 different kinds of highlighting. If you run
529into this limit, you have used too many |:highlight| commands with different
530arguments. A ":highlight link" is not counted.
531
532 *E77* >
533 Too many file names
534
535When expanding file names, more than one match was found. Only one match is
536allowed for the command that was used.
537
538 *E303* >
539 Unable to open swap file for "{filename}", recovery impossible
540
541Vim was not able to create a swap file. You can still edit the file, but if
542Vim unexpected exits the changes will be lost. And Vim may consume a lot of
543memory when editing a big file. You may want to change the 'directory' option
544to avoid this error. See |swap-file|.
545
546 *E140* >
547 Use ! to write partial buffer
548
549When using a range to write part of a buffer, it is unusual to overwrite the
550original file. It is probably a mistake (e.g., when Visual mode was active
551when using ":w"), therefore Vim requires using a ! after the command, e.g.:
552":3,10w!".
553>
554
555 Warning: Cannot convert string "<Key>Escape,_Key_Cancel" to type
556 VirtualBinding
557
558Messages like this appear when starting up. This is not a Vim problem, your
559X11 configuration is wrong. You can find a hint on how to solve this here:
560http://groups.yahoo.com/group/solarisonintel/message/12179.
561
562 *W10* >
563 Warning: Changing a readonly file
564
565The file is read-only and you are making a change to it anyway. You can use
566the |FileChangedRO| autocommand event to avoid this message (the autocommand
567must reset the 'readonly' option). See 'modifiable' to completely disallow
568making changes to a file.
569
570 *W13* >
571 Warning: File "{filename}" has been created after editing started
572
573You are editing a file in Vim when it didn't exist, but it does exist now.
574You will have to decide if you want to keep the version in Vim or the newly
575created file. This message is not given when 'buftype' is not empty.
576
577 *W11* >
578 Warning: File "{filename}" has changed since editing started
579
580The file which you have started editing has got another timestamp and the
581contents changed (more precisely: When reading the file again with the current
582option settings and autocommands you would end up with different text). This
583probably means that some other program changed the file. You will have to
584find out what happened, and decide which version of the file you want to keep.
585Set the 'autoread' option if you want to do this automatically.
586This message is not given when 'buftype' is not empty.
587
588There is one situation where you get this message even though there is nothing
589wrong: If you save a file in Windows on the day the daylight saving time
590starts. It can be fixed in one of these ways:
591- Add this line in your autoexec.bat: >
592 SET TZ=-1
593< Adjust the "-1" for your time zone.
594- Disable "automatically adjust clock for daylight saving changes".
595- Just write the file again the next day. Or set your clock to the next day,
596 write the file twice and set the clock back.
597
598 *W12* >
599 Warning: File "{filename}" has changed and the buffer was changed in Vim as well
600
601Like the above, and the buffer for the file was changed in this Vim as well.
602You will have to decide if you want to keep the version in this Vim or the one
603on disk. This message is not given when 'buftype' is not empty.
604
605 *W16* >
606 Warning: Mode of file "{filename}" has changed since editing started
607
608When the timestamp for a buffer was changed and the contents are still the
609same but the mode (permissions) have changed. This usually occurs when
610checking out a file from a version control system, which causes the read-only
611bit to be reset. It should be safe to reload the file. Set 'autoread' to
612automatically reload the file.
613
614 *E211* >
615 Warning: File "{filename}" no longer available
616
617The file which you have started editing has disappeared, or is no longer
618accessible. Make sure you write the buffer somewhere to avoid losing
619changes. This message is not given when 'buftype' is not empty.
620
621 *W14* >
622 Warning: List of file names overflow
623
624You must be using an awful lot of buffers. It's now possible that two buffers
625have the same number, which causes various problems. You might want to exit
626Vim and restart it.
627
628 *E296* *E297* >
629 Seek error in swap file write
630 Write error in swap file
631
632This mostly happens when the disk is full. Vim could not write text into the
633|swap-file|. It's not directly harmful, but when Vim unexpectedly exits some
634text may be lost without recovery being possible. Vim might run out of memory
635when this problem persists.
636
637 *connection-refused* >
638 Xlib: connection to "<machine-name:0.0" refused by server
639
640This happens when Vim tries to connect to the X server, but the X server does
641not allow a connection. The connection to the X server is needed to be able
642to restore the title and for the xterm clipboard support. Unfortunately this
643error message cannot be avoided, except by disabling the |+xterm_clipboard|
644and |+X11| features.
645
646 *E10* >
647 \\ should be followed by /, ? or &
648
649A command line started with a backslash or the range of a command contained a
650backslash in a wrong place. This is often caused by command-line continuation
651being disabled. Remove the 'C' flag from the 'cpoptions' option to enable it.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000652Or use ":set nocp".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653
654 *E471* >
655 Argument required
656
657This happens when an Ex command with mandatory argument(s) was executed, but
658no argument has been specified.
659
660 *E474* *E475* >
661 Invalid argument
662
663An Ex command has been executed, but an invalid argument has been specified.
664
665 *E488* >
666 Trailing characters
667
668An argument has been added to an Ex command that does not permit one.
669
670 *E477* *E478* >
671 No ! allowed
672 Don't panic!
673
674You have added a "!" after an Ex command that doesn't permit one.
675
676 *E481* >
677 No range allowed
678
679A range was specified for an Ex command that doesn't permit one. See
680|cmdline-ranges|.
681
682 *E482* *E483* >
683 Can't create file {filename}
684 Can't get temp file name
685
686Vim cannot create a temporary file.
687
688 *E484* *E485* >
689 Can't open file %s"
690 Can't read file %s"
691
692Vim cannot read a temporary file.
693
694 *E464* >
695 Ambiguous use of user-defined command
696
697There are two user-defined commands with a common name prefix, and you used
698Command-line completion to execute one of them. |user-cmd-ambiguous|
699Example: >
700 :command MyCommand1 echo "one"
701 :command MyCommand2 echo "two"
702 :MyCommand
703<
704 *E492* >
705 Not an editor command
706
707You tried to execute a command that is neither an Ex command nor
708a user-defined command.
709
710==============================================================================
7113. Messages *messages*
712
713This is an (incomplete) overview of various messages that Vim gives:
714
715 *hit-enter* *press-enter* *hit-return* *press-return* >
716
717 Hit ENTER or type command to continue
718
719This message is given when there is something on the screen for you to read,
720and the screen is about to be redrawn:
721- After executing an external command (e.g., ":!ls" and "=").
722- Something is displayed on the status line that is longer than the width of
723 the window, or runs into the 'showcmd' or 'ruler' output.
724
725-> Hit <Enter> or <Space> to redraw the screen and continue, without that key
726 being used otherwise.
727-> Hit ":" or any other Normal mode command character to start that command.
728-> Hit <C-Y> to copy (yank) a modeless selection to the clipboard register.
729-> Use a menu. The characters defined for Cmdline-mode are used.
730-> When 'mouse' contains the 'r' flag, clicking the left mouse button works
731 like pressing <Space>. This makes it impossible to select text though.
732-> For the GUI clicking the left mouse button in the last line works like
733 pressing <Space>.
734{Vi: only ":" commands are interpreted}
735
736To reduce the number of hit-enter prompts:
737- Set 'cmdheight' to 2 or higher.
738- Add flags to 'shortmess'.
739- Reset 'showcmd' and/or 'ruler'.
740
741Also see 'mouse'. The hit-enter message is highlighted with the |hl-Question|
742group.
743
744
745 *more-prompt* *pager* >
746 -- More --
747 -- More -- (RET: line, SPACE: page, d: half page, q: quit)
748 -- More -- (RET/BS: line, SPACE/b: page, d/u: half page, q: quit)
749
750This message is given when the screen is filled with messages. It is only
751given when the 'more' option is on. It is highlighted with the |hl-MoreMsg|
752group.
753
754Type effect ~
755 <CR> or <NL> or j or <Down> one more line
756 <BS> or k or <Up> one line back (*)
757 <Space> or <PageDown> next page
758 b or <PageUp> previous page (*)
759 d down half a page
760 u up half a page (*)
761 q, <Esc> or CTRL-C stop the listing
762 : stop the listing and enter a
763 command-line
764 <C-Y> yank (copy) a modeless selection to
765 the clipboard ("* and "+ registers)
766 {menu-entry} what the menu is defined to in
767 Cmdline-mode.
768 <LeftMouse> (**) next page
769
770Any other key causes the meaning of the keys to be displayed.
771
772(*) backwards scrolling is only supported for these commands: >
773 :clist
774(**) Clicking the left mouse button only works:
775 - For the GUI: in the last line of the screen.
776 - When 'r' is included in 'mouse' (but then selecting text won't work).
777
778
779Note: The typed key is directly obtained from the terminal, it is not mapped
780and typeahead is ignored.
781
782 vim:tw=78:ts=8:ft=help:norl: