Skip to content

Commit 8848740

Browse files
authored
Merge pull request #1159 from tsuyoshicho/update/20221015/intro
Update intro.{txt,jax}
2 parents d7a71e6 + 0da2e50 commit 8848740

File tree

2 files changed

+21
-13
lines changed

2 files changed

+21
-13
lines changed

doc/intro.jax

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*intro.txt* For Vim バージョン 9.0. Last change: 2022 Apr 03
1+
*intro.txt* For Vim バージョン 9.0. Last change: 2022 Oct 12
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -120,10 +120,10 @@ http://www.vim.org/maillist.php
120120
バグレポート: *bugs* *bug-reports* *bugreport.vim*
121121

122122
バグを報告するには3つの方法があります:
123-
1. GitHub に issue を立ててください: https://github.com/vim/vim/issues
124-
文章は vim-dev メーリングリストにも転送されます。
125-
2. ランタイムのファイルについてのissueは、ヘッダにある email アドレス宛てか他
123+
1. ランタイムのファイルについてのissueは、ヘッダにある email アドレス宛てか他
126124
の方法でメンテナーにレポートを送ってください。
125+
2. GitHub に issue を立ててください: https://github.com/vim/vim/issues
126+
文章は vim-dev メーリングリストにも転送されます。
127127
3. バグレポートは Vim 開発陣 <[email protected]> に送ってください。
128128
これはメーリングリストです。最初にメンバーになる必要があります。たくさんの
129129
人がそのメッセージを見ます。それが不都合な場合は (例えばセキュリティ関係)、
@@ -522,6 +522,9 @@ CTRL-H を "<Home>" の 6 文字にマップする例: >
522522
ま使うことができます。あるいは、'<' と '>' も含めて、そのまま入力してください。
523523
これは ":set" や ":autocmd" などの他のコマンドでは機能しません!
524524

525+
この表記は、ダブルクォートで囲んだ文字列の先頭に "\<" を付けて使用することがで
526+
きます。例えば "\<C-Space>"。この結果、特殊なキーコードが生成されます。これを
527+
読みやすいテキストに戻す変換には、`keytrans()` を使用します。
525528
==============================================================================
526529
5. モードの紹介 *vim-modes-intro* *vim-modes*
527530

@@ -682,8 +685,8 @@ Q "Ex" モードに切り替えます。このモードは ":" コマンドを
682685
- マップと短縮入力は使えない。
683686
つまり、"標準の" 行編集コマンドだけを使って入力します
684687
(削除に<Del>または<BS>、行削除に CTRL-U を使用する)。
685-
Vim が "ex" という名前で実行された場合には、このモード
686-
で起動します
688+
Vim が "ex" という名前かコマンドライン引数 |-e| を使用
689+
して実行された場合には、このモードで起動します
687690
"Ex" モードを抜けるには、":vi" コマンド |:visual| を使
688691
います。
689692
Note: Vim の昔のバージョンでは "Q" がテキストを整形す
@@ -696,7 +699,7 @@ Q "Ex" モードに切り替えます。このモードは ":" コマンドを
696699
gQ "Ex" モードに切り替えます。"Q" と同じですが、実際に
697700
":" コマンドでコマンドを入力するのと同じように動作しま
698701
す。コマンドライン編集や補完などがすべて利用可能です。
699-
"Ex" モードを抜けるには、":vi" コマンド |:visual| を使
702+
"Ex" モードを抜けるには、`:vi` コマンド(`:visual`)を使
700703
います。
701704

702705
==============================================================================

en/intro.txt

Lines changed: 11 additions & 6 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 Oct 12
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -122,10 +122,10 @@ http://www.vim.org/maillist.php
122122
Bug reports: *bugs* *bug-reports* *bugreport.vim*
123123

124124
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
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.
129129
3. Send bug reports to: Vim Developers <[email protected]>
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
==============================================================================
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)