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
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -122,10 +122,10 @@ http://www.vim.org/maillist.php
122122Bug reports: *bugs* *bug-reports* *bugreport.vim*
123123
124124There 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
128126 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.
1291293. Send bug reports to: Vim Developers <vim-dev@vim.org>
130130 This is a maillist, you need to become a member first and many people will
131131 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
533533'>' characters. This does NOT work for other commands, like ":set" and
534534":autocmd"!
535535
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+
536540==============================================================================
5375415. Modes, introduction *vim-modes-intro* *vim-modes*
538542
@@ -697,7 +701,8 @@ Q Switch to "Ex" mode. This is a bit like typing ":"
697701 line-input editing commands (<Del> or <BS> to erase,
698702 CTRL-U to kill the whole line).
699703 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.
701706 Use the ":vi" command | :visual | to exit "Ex" mode.
702707 Note: In older versions of Vim "Q" formatted text,
703708 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 ":"
708713gQ Switch to "Ex" mode like with "Q", but really behave
709714 like typing ":" commands after another. All command
710715 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.
712717
713718==============================================================================
7147197. The window contents *window-contents*
0 commit comments