Skip to content

Commit 365929f

Browse files
committed
intro.txt: Update Vim 9.0.0752
1 parent fb88d19 commit 365929f

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

en/intro.txt

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*intro.txt* For Vim version 9.0. Last change: 2022 Apr 03
1+
*intro.txt* For Vim version 9.0. Last change: 2022 Sep 12
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -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
==============================================================================
537541
5. 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 ":"
708713
gQ 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
==============================================================================
714719
7. The window contents *window-contents*

0 commit comments

Comments
 (0)