1
- *intro.txt* For Vim version 9.0. Last change: 2022 Apr 03
1
+ *intro.txt* For Vim version 9.0. Last change: 2022 Oct 12
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -122,10 +122,10 @@ http://www.vim.org/maillist.php
122
122
Bug reports: *bugs* *bug-reports* *bugreport.vim*
123
123
124
124
There are three ways to report bugs:
125
- 1. Open an issue on GitHub: https://github.com/vim/vim/issues
126
- The text will be forwarded to the vim-dev maillist.
127
- 2. For issues with runtime files, look in the header for an email address or
125
+ 1. For issues with runtime files, look in the header for an email address or
128
126
any other way to report it to the maintainer.
127
+ 2. Open an issue on GitHub: https://github.com/vim/vim/issues
128
+ The text will be forwarded to the vim-dev maillist.
129
129
3. Send bug reports to: Vim Developers <
[email protected] >
130
130
This is a maillist, you need to become a member first and many people will
131
131
see the message. If you don't want that, e.g. because it is a security
@@ -533,6 +533,10 @@ examples and use them directly. Or type them literally, including the '<' and
533
533
'>' characters. This does NOT work for other commands, like ":set" and
534
534
":autocmd"!
535
535
536
+ The notation can be used in a double quoted strings, using "\<" at the start,
537
+ e.g. "\<C-Space> ". This results in a special key code. To convert this back
538
+ to readable text use `keytrans ()` .
539
+
536
540
==============================================================================
537
541
5. Modes, introduction *vim-modes-intro* *vim-modes*
538
542
@@ -697,7 +701,8 @@ Q Switch to "Ex" mode. This is a bit like typing ":"
697
701
line-input editing commands (<Del> or <BS> to erase,
698
702
CTRL-U to kill the whole line).
699
703
Vim will enter this mode by default if it's invoked as
700
- "ex" on the command-line.
704
+ "ex" on the command-line or the | -e | command line
705
+ argument was used.
701
706
Use the ":vi" command | :visual | to exit "Ex" mode.
702
707
Note: In older versions of Vim "Q" formatted text,
703
708
that is now done with | gq | . But if you use the
@@ -708,7 +713,7 @@ Q Switch to "Ex" mode. This is a bit like typing ":"
708
713
gQ Switch to "Ex" mode like with "Q", but really behave
709
714
like typing ":" commands after another. All command
710
715
line editing, completion etc. is available.
711
- Use the " :vi" command | :visual | to exit "Ex" mode.
716
+ Use the ` :vi ` command ( ` :visual ` ) to exit "Ex" mode.
712
717
713
718
==============================================================================
714
719
7. The window contents *window-contents*
0 commit comments