File tree Expand file tree Collapse file tree 8 files changed +16
-15
lines changed Expand file tree Collapse file tree 8 files changed +16
-15
lines changed Original file line number Diff line number Diff line change 1
- *change.txt* For Vim バージョン 9.1. Last change: 2024 Jul 14
1
+ *change.txt* For Vim バージョン 9.1. Last change: 2024 Jul 28
2
2
3
3
4
4
VIMリファレンスマニュアル by Bram Moolenaar
Original file line number Diff line number Diff line change 1
- *eval.txt* For Vim バージョン 9.1. Last change: 2024 Jul 17
1
+ *eval.txt* For Vim バージョン 9.1. Last change: 2024 Jul 28
2
2
3
3
4
4
VIMリファレンスマニュアル by Bram Moolenaar
@@ -3045,7 +3045,7 @@ text...
3045
3045
let lconst[0] = 2 " Error!
3046
3046
let lconst[1][0] = 'b' " OK
3047
3047
< *E995*
3048
- :const を既存の変数に指定するとエラーになる: >
3048
+ | :const | を既存の変数に指定するとエラーになる: >
3049
3049
:let x = 1
3050
3050
:const x = 1 " エラー!
3051
3051
< *E996*
Original file line number Diff line number Diff line change 1
- *usr_05.txt* For Vim バージョン 9.1. Last change: 2024 Jun 19
1
+ *usr_05.txt* For Vim バージョン 9.1. Last change: 2024 Jun 28
2
2
3
3
VIM USER MANUAL - by Bram Moolenaar
4
4
Original file line number Diff line number Diff line change 1
- *version9.txt* For Vim バージョン 9.1. Last change: 2024 Jul 25
1
+ *version9.txt* For Vim バージョン 9.1. Last change: 2024 Jul 28
2
2
3
3
4
4
VIMリファレンスマニュアル by Bram Moolenaar
@@ -41609,7 +41609,7 @@ XDG デスクトップ仕様 |xdg-base-dir| のサポート
41609
41609
自動コマンド: ~
41610
41610
41611
41611
|CursorMovedC| コマンドラインでカーソルが移動された後
41612
- |KeyInputPre| 任意のモードで任意のキーイベントを処理
41612
+ |KeyInputPre| 任意のモードで任意のキーイベントを処理する前
41613
41613
|SessionWritePost| セッションファイルを書き込んだ後 |:mksession|
41614
41614
|TermResponseAll| 't_RV' 等に対する端末応答を受信した後
41615
41615
|WinNewPre| 新しいウィンドウを作成する前
Original file line number Diff line number Diff line change 1
- *change.txt* For Vim version 9.1. Last change: 2024 Jul 14
1
+ *change.txt* For Vim version 9.1. Last change: 2024 Jul 28
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1414,7 +1414,7 @@ The next three commands always work on whole lines.
1414
1414
:[range] m[ove] {address} *:m* *:mo* *:move* *E134*
1415
1415
Move the lines given by [range] to below the line
1416
1416
given by {address} .
1417
- Any text properties in [range] are cleared
1417
+ Any text properties in [range] are cleared. See
1418
1418
| text-prop-cleared | .
1419
1419
1420
1420
==============================================================================
Original file line number Diff line number Diff line change 1
- *eval.txt* For Vim version 9.1. Last change: 2024 Jul 17
1
+ *eval.txt* For Vim version 9.1. Last change: 2024 Jul 28
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -3125,7 +3125,7 @@ text...
3125
3125
let lconst[1][0] = 'b' " OK
3126
3126
< *E995*
3127
3127
It is an error to specify an existing variable with
3128
- :const. >
3128
+ | :const | . >
3129
3129
:let x = 1
3130
3130
:const x = 1 " Error!
3131
3131
< *E996*
Original file line number Diff line number Diff line change 1
- *usr_05.txt* For Vim version 9.1. Last change: 2024 Jun 19
1
+ *usr_05.txt* For Vim version 9.1. Last change: 2024 Jun 28
2
2
3
3
VIM USER MANUAL - by Bram Moolenaar
4
4
@@ -455,7 +455,8 @@ Adding nohlsearch package *nohlsearch-install*
455
455
Load the plugin with this command: >
456
456
packadd nohlsearch
457
457
<
458
- Automatically execute | :nohlsearch | after 'updatetime' or getting into | Insert | mode.
458
+ Automatically execute | :nohlsearch | after 'updatetime' or getting into
459
+ | Insert | mode.
459
460
Thus assuming default updatetime, hlsearch would be suspended/turned off after
460
461
4 seconds of idle time.
461
462
Original file line number Diff line number Diff line change 1
- *version9.txt* For Vim version 9.1. Last change: 2024 Jul 25
1
+ *version9.txt* For Vim version 9.1. Last change: 2024 Jul 28
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -41581,7 +41581,7 @@ Changed~
41581
41581
function |get()-func|
41582
41582
- |:bwipe| also wipes jumplist and tagstack data
41583
41583
- moving in the buffer list using |:bnext| and similar commands, behaves as
41584
- documented and skips help buffers (if not run from a help buffer, else
41584
+ documented and skips help buffers (if not run from a help buffer, else
41585
41585
moves to the next/previous help buffer).
41586
41586
- allow to complete directories from 'cdpath' for |:cd| and similar commands,
41587
41587
add the "cd_in_path" completion type for e.g. |:command-complete| and
@@ -41614,7 +41614,7 @@ Functions: ~
41614
41614
Autocommands: ~
41615
41615
41616
41616
|CursorMovedC| after the cursor was moved in the comamnd-line
41617
- |KeyInputPre| process any Key event in any mode
41617
+ |KeyInputPre| before processing any key event in any mode
41618
41618
|SessionWritePost| after writing the session file |:mksession|
41619
41619
|TermResponseAll| after the terminal response to |t_RV| and others is
41620
41620
received
You can’t perform that action at this time.
0 commit comments