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