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