Skip to content

Commit dd1a19f

Browse files
authored
Merge pull request #1120 from tsuyoshicho/update/22020719/misc1
Update misc files for Vim 9.0.0057
2 parents 9b4309a + e29595c commit dd1a19f

18 files changed

+29
-16
lines changed

doc/editing.jax

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1216,7 +1216,7 @@ ZQ 変更点を確かめずに終了する (コマンド ":q!" と同様)。
12161216

12171217
常に ":confirm" を使いたいなら、代わりにオプション 'confirm' をオンにすること。
12181218

1219-
*:browse* *:bro* *E338*
1219+
*:browse* *:bro* *E338*
12201220
:bro[wse] {command} {command} の引数のためにファイル選択ダイアログを開く。
12211221
現在の所、これらのコマンドと共に使える |:e|, |:w|,
12221222
|:wall|, |:wq|, |:wqall|, |:x|, |:xall|, |:exit|,

doc/gui_x11.jax

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -677,6 +677,9 @@ X サーバーから直接読み込まれる。
677677
"autoselect" を設定する)。"+ レジスタを読み書きするときにはクリップボードを
678678
使う。Vim はセカンダリを使わない。
679679

680+
これは GUI 版および端末版の両方に適用される。X11 以外のシステムの場合、プラス
681+
とスターレジスタの両方がシステムクリップボードを使用する。
682+
680683
例: (オプションが標準設定のとき)
681684
- Vim のビジュアルモードで URL を選択する。ブラウザーの URL 入力欄でマウスの
682685
ミドルボタンをクリックする。選択したテキストが入力される (うまくいけば!)。

doc/quickfix.jax

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -526,6 +526,10 @@ quickfixリストのエントリ数が多すぎる場合は、cfilterプラグ
526526
|:Lfilter| コマンドは |:Cfilter| と同じ動作をするが、カレントlocationリストを
527527
操作する。
528528

529+
現在の quickfix/location リストはこれらのコマンドによって変更されないため、
530+
|:colder|/|:lolder| コマンドを使用してフィルタリングされていないリストに戻るこ
531+
とができる。
532+
529533
=============================================================================
530534
2. エラーウィンドウ *quickfix-window*
531535

doc/repeat.jax

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*repeat.txt* For Vim バージョン 9.0. Last change: 2022 Apr 08
1+
*repeat.txt* For Vim バージョン 9.0. Last change: 2022 Jun 18
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -193,7 +193,7 @@ Vim script の書き方はユーザーマニュアルの41章|usr_41.txt|を参
193193
マンドを列挙したファイルである。
194194
{訳注: 実際に ":" を書く必要はない}
195195
自動コマンド |SourcePre| が発生する。
196-
196+
*:source-range*
197197
:[range]so[urce] [++clear]
198198
カレントバッファの[range]行の範囲からExコマンドを読み
199199
込む。

doc/starting.jax

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ VMSでは全てのオプション引数は小文字であるとみなされる
344344
ログの出力を開始し、ファイル {filename} に書き込む。
345345
これは、起動時の非常に早い段階で
346346
`ch_logfile({filename}, 'ao')` を呼び出すのと同様な動作である。
347-
{+channel が有効な場合のみ利用可能}
347+
{|+channel| が有効な場合のみ利用可能}
348348

349349
*-D*
350350
-D デバッグする。スクリプトの最初のコマンドを実行するところからデ

en/editing.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1225,7 +1225,7 @@ Examples: >
12251225

12261226
If you want to always use ":confirm", set the 'confirm' option.
12271227

1228-
*:browse* *:bro* *E338*
1228+
*:browse* *:bro* *E338*
12291229
:bro[wse] {command} Open a file selection dialog for an argument to
12301230
{command}. At present this works for |:e|, |:w|,
12311231
|:wall|, |:wq|, |:wqall|, |:x|, |:xall|, |:exit|,

en/gui_x11.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -679,6 +679,9 @@ Of these three, Vim uses PRIMARY when reading and writing the "* register
679679
|'clipboard'| of "autoselect"), and CLIPBOARD when reading and writing the "+
680680
register. Vim does not access the SECONDARY selection.
681681

682+
This applies both to the GUI and the terminal version. For non-X11 systems
683+
the plus and the star register both us the system clipboard.
684+
682685
Examples: (assuming the default option values)
683686
- Select a URL in Visual mode in Vim. Go to your browser and click the
684687
middle mouse button in the URL text field. The selected text will be

en/indent.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ The examples below assume a 'shiftwidth' of 4.
291291
<
292292
*cino-g*
293293
gN Place C++ scope declarations N characters from the indent of the
294-
block they are in. (default 'shiftwidth'). By default, a scope
294+
block they are in. (default 'shiftwidth'). By default, a scope
295295
declaration is "public:", "protected:" or "private:". This can
296296
be adjusted with the 'cinscopedecls' option.
297297

en/quickfix.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,9 @@ pattern is used.
568568
The |:Lfilter| command does the same as |:Cfilter| but operates on the current
569569
location list.
570570

571+
The current quickfix/location list is not modified by these commands, so you
572+
can go back to the unfiltered list using the |:colder|/|:lolder| command.
573+
571574
=============================================================================
572575
2. The error window *quickfix-window*
573576

en/quickref.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ Short explanation of each option: *option-list*
643643
'cinkeys' 'cink' keys that trigger indent when 'cindent' is set
644644
'cinoptions' 'cino' how to do indenting when 'cindent' is set
645645
'cinwords' 'cinw' words where 'si' and 'cin' add an indent
646-
'cinscopedecls' 'cinsd' words that are recognized by 'cino-g'
646+
'cinscopedecls' 'cinsd' words that are recognized by 'cino-g'
647647
'clipboard' 'cb' use the clipboard as the unnamed register
648648
'cmdheight' 'ch' number of lines to use for the command-line
649649
'cmdwinheight' 'cwh' height of the command-line window

0 commit comments

Comments
 (0)