Skip to content

Commit a445113

Browse files
authored
Merge pull request #572 from vim-jp/update_many_files_2
Update many files #2
2 parents ca1723a + 2c9f7cb commit a445113

File tree

14 files changed

+48
-33
lines changed

14 files changed

+48
-33
lines changed

doc/terminal.jax

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*terminal.txt* For Vim バージョン 8.1. Last change: 2019 May 05
1+
*terminal.txt* For Vim バージョン 8.1. Last change: 2019 May 20
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar

doc/textprop.jax

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*textprop.txt* For Vim バージョン 8.1. Last change: 2019 May 06
1+
*textprop.txt* For Vim バージョン 8.1. Last change: 2019 May 12
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -13,7 +13,6 @@ THIS IS UNDER DEVELOPMENT - ANYTHING MAY STILL CHANGE *E967*
1313
- テキストを挿入するときの桁/長さの調整
1414
- 複数の行にまたがるテキストプロパティ
1515
- prop_find()
16-
- テキストプロパティが古くなったときのコールバック
1716

1817

1918
1. 前書き |text-prop-intro|
@@ -132,6 +131,12 @@ Vimはテキストプロパティをそれが付加されたテキストの上
132131
置換モードを使用すると、文字自体が変更しても、テキストプロパティは同じ文字位置
133132
に留まります。
134133

134+
テキストが変更された後にテキストのプロパティを更新するには、`listener_add()`
135+
でコールバックを設置します。例えば、もしあなたのプラグインがスペルチェックをし
136+
ているのなら、変更されたテキスト内のスペルミスをコールバックで更新することがで
137+
きます。変更されたテキストの下にプロパティが移動し、同じテキストがハイライトさ
138+
れるため、これらを更新する必要はありません。
139+
135140

136141
テキストプロパティの桁が更新されません: ~
137142

doc/usr_05.jax

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_05.txt* For Vim バージョン 8.1. Last change: 2019 Feb 27
1+
*usr_05.txt* For Vim バージョン 8.1. Last change: 2019 May 23
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -239,7 +239,7 @@ defaults.vim の読み込みは、次のコマンドで無効にできます: >
239239
>
240240
set display=truncate
241241
242-
最後の行が切り捨てられる場合は、全体を非表示にするのではなく、@@@ を表示しま
242+
最後の行が切り捨てられる場合は、行全体を非表示にするのではなく、@@@ を表示しま
243243
す。'display' を参照してください。
244244

245245
>

doc/usr_41.jax

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_41.txt* For Vim バージョン 8.1. Last change: 2019 May 09
1+
*usr_41.txt* For Vim バージョン 8.1. Last change: 2019 May 16
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -790,6 +790,7 @@ substitute() コマンドの前後にいろいろな処理を入れたりする
790790
appendbufline() 指定されたバッファに行のリストを追加する
791791
deletebufline() 指定されたバッファの行を削除する
792792
listener_add() 変更を監視するためのコールバックを追加する
793+
listener_flush() リスナーコールバックを呼び出す
793794
listener_remove() リスナーコールバックを削除する
794795
win_findbuf() バッファが含まれるウィンドウを探す
795796
win_getid() ウィンドウのウィンドウIDを得る
@@ -929,6 +930,7 @@ Vimサーバー: *server-functions*
929930
test_autochdir() 起動中に 'autochdir' を有効にする
930931
test_override() Vimの内部処理を置き換えてテストする
931932
test_garbagecollect_now() 直ちにメモリを解放する
933+
test_getvalue() 内部変数の値を取得する
932934
test_ignore_error() 特定のエラーメッセージを無視する
933935
test_null_blob() null の Blob を返す
934936
test_null_channel() null のチャネルを返す

doc/usr_toc.jax

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_toc.txt* For Vim バージョン 8.1. Last change: 2016 Mar 25
1+
*usr_toc.txt* For Vim バージョン 8.1. Last change: 2019 May 24
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -103,12 +103,13 @@
103103
|usr_05.txt| 設定の変更
104104
|05.1| vimrc ファイル
105105
|05.2| 見本 vimrc ファイルの解説
106-
|05.3| 簡単なマップ
107-
|05.4| パッケージの追加
108-
|05.5| プラグインの追加
109-
|05.6| ヘルプファイルの追加
110-
|05.7| オプションウィンドウ
111-
|05.8| よく使うオプション
106+
|05.3| defaults.vim ファイルの解説
107+
|05.4| 簡単なマップ
108+
|05.5| パッケージの追加
109+
|05.6| プラグインの追加
110+
|05.7| ヘルプファイルの追加
111+
|05.8| オプションウィンドウ
112+
|05.9| よく使うオプション
112113

113114
|usr_06.txt| 構文強調表示
114115
|06.1| 構文強調表示を有効にする

doc/windows.jax

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*windows.txt* For Vim バージョン 8.1. Last change: 2019 May 05
1+
*windows.txt* For Vim バージョン 8.1. Last change: 2019 May 10
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -1212,7 +1212,6 @@ CTRL-W g } *CTRL-W_g}*
12121212
も、コード/テキストバッファを次々と表示する際にヘルプが邪魔に
12131213
ならない。次の3つのコマンドも同じように動作する。
12141214

1215-
12161215
*:sbn* *:sbnext*
12171216
:[N]sbn[ext] [+cmd] [N]
12181217
ウィンドウを分割しバッファリストの[N]個先のバッファへ移動す

en/terminal.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*terminal.txt* For Vim version 8.1. Last change: 2019 May 05
1+
*terminal.txt* For Vim version 8.1. Last change: 2019 May 20
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -495,7 +495,8 @@ Currently supported commands:
495495
directory, thus it's best to use the full path.
496496

497497
[options] is only used when opening a new window. If present,
498-
it must be a Dict. Similarly to |++opt|, These entries are recognized:
498+
it must be a Dict. Similarly to |++opt|, These entries are
499+
recognized:
499500
"ff" file format: "dos", "mac" or "unix"
500501
"fileformat" idem
501502
"enc" overrides 'fileencoding'

en/textprop.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*textprop.txt* For Vim version 8.1. Last change: 2019 May 06
1+
*textprop.txt* For Vim version 8.1. Last change: 2019 May 12
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -12,7 +12,6 @@ What is not working yet:
1212
- Adjusting column/length when inserting text
1313
- Text properties spanning more than one line
1414
- prop_find()
15-
- callbacks when text properties are outdated
1615

1716

1817
1. Introduction |text-prop-intro|
@@ -131,6 +130,12 @@ unless the whole line is deleted.
131130
When using replace mode, the text properties stay on the same character
132131
positions, even though the characters themselves change.
133132

133+
To update text properties after the text was changed, install a callback with
134+
`listener_add()`. E.g, if your plugin does spell checking, you can have the
135+
callback update spelling mistakes in the changed text. Vim will move the
136+
properties below the changed text, so that they still highlight the same text,
137+
thus you don't need to update these.
138+
134139

135140
Text property columns are not updated: ~
136141

en/usr_05.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_05.txt* For Vim version 8.1. Last change: 2019 Feb 27
1+
*usr_05.txt* For Vim version 8.1. Last change: 2019 May 23
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -234,7 +234,7 @@ remote connection, increase the number. See 'ttimeout'.
234234
set display=truncate
235235
236236
Show @@@ in the last line if it is truncated, instead of hiding the whole
237-
like. See 'display'.
237+
line. See 'display'.
238238

239239
>
240240
set incsearch

en/usr_22.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ a tab page share this directory except for windows with a window-local
220220
directory. Any new windows opened in this tab page will use this directory as
221221
the current working directory. Using a `:cd` command in a tab page will not
222222
change the working directory of tab pages which have a tab local directory.
223-
When the global working directory is changed using the ":cd" command in a tab
223+
When the global working directory is changed using the `:cd` command in a tab
224224
page, it will also change the current tab page working directory.
225225

226226

0 commit comments

Comments
 (0)