File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- *vim9.txt* For Vim バージョン 9.1. Last change: 2025 Apr 18
1
+ *vim9.txt* For Vim バージョン 9.1. Last change: 2025 Apr 27
2
2
3
3
VIMリファレンスマニュアル by Bram Moolenaar
4
4
@@ -2043,7 +2043,7 @@ export された項目は、別のスクリプトで import することがで
2043
2043
2044
2044
名前が ".vim" で終わらない場合は、"as name" を使用する必要があります。
2045
2045
2046
- vim9 script ファイルを一度 import すると、その結果はキャッシュされ、次に同じス
2046
+ Vim9 script ファイルを一度 import すると、その結果はキャッシュされ、次に同じス
2047
2047
クリプトを import するときに使用されます。再度読み込まれることはありません。
2048
2048
2049
2049
2 つの異なる "as" 名を使用する場合も同様に、同じスクリプトを 2 回 import する
@@ -2056,7 +2056,7 @@ import 名を使用する場合、ドットと項目名は同じ行になけれ
2056
2056
echo that
2057
2057
.name # エラー!
2058
2058
< *import-map*
2059
- あるスクリプトから vim9 script に関数を import した場合、import した関数の前に
2059
+ あるスクリプトから Vim9 script に関数を import した場合、import した関数の前に
2060
2060
| <SID> | を付けることで、マッピングで参照することができます: >
2061
2061
noremap <silent> ,a :call <SID>name.Function()<CR>
2062
2062
Original file line number Diff line number Diff line change 1
- *vim9.txt* For Vim version 9.1. Last change: 2025 Apr 18
1
+ *vim9.txt* For Vim version 9.1. Last change: 2025 Apr 27
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2043,7 +2043,7 @@ The script name after `import` can be:
2043
2043
2044
2044
If the name does not end in ".vim" then the use of "as name" is required.
2045
2045
2046
- Once a vim9 script file has been imported, the result is cached and used the
2046
+ Once a Vim9 script file has been imported, the result is cached and used the
2047
2047
next time the same script is imported. It will not be read again.
2048
2048
2049
2049
It is not allowed to import the same script twice, also when using two
@@ -2056,7 +2056,7 @@ line, there can be no line break: >
2056
2056
echo that
2057
2057
.name # Error!
2058
2058
< *import-map*
2059
- When you've imported a function from one script into a vim9 script you can
2059
+ When you've imported a function from one script into a Vim9 script you can
2060
2060
refer to the imported function in a mapping by prefixing it with | <SID> | : >
2061
2061
noremap <silent> ,a :call <SID>name.Function()<CR>
2062
2062
You can’t perform that action at this time.
0 commit comments