Skip to content

Commit 81f74fd

Browse files
authored
Merge pull request #1320 from vim-jp/hh-update-repeat
Update repeat.{txt,jax}
2 parents 6aff123 + 0dc6344 commit 81f74fd

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

doc/repeat.jax

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*repeat.txt* For Vim バージョン 9.0. Last change: 2023 May 01
1+
*repeat.txt* For Vim バージョン 9.0. Last change: 2023 May 26
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -300,9 +300,9 @@ Vim script の書き方はユーザーマニュアルの41章|usr_41.txt|を参
300300
る。
301301

302302
ファイルタイプの検知が有効化されていない場合(これは通
303-
.vimrc中の "syntax enable""filetype on" コマンド
304-
により行われる)、"{name}/ftdetect/*.vim" ファイルを参
305-
照する
303+
.vimrc 中の `syntax enable``filetype on` コマン
304+
ドにより行われる)、"{name}/ftdetect/*.vim" ファイルを
305+
参照する
306306

307307
任意の ! が付けられた場合、プラグインのファイルや
308308
ftdetectのスクリプトは読み込まれず、マッチしたディレク
@@ -1127,8 +1127,8 @@ Count の桁はその行が何回実行されたかを示す。7行目の "for"
11271127
原因によりその結果がごまかされてしまう場合があるということを覚えておくように:
11281128

11291129
- 測定される時間の精度は、システム関数 gettimeofday()、または使用可能な場合は
1130-
clock_gettime に依存する。精度の範囲は 1/100 秒からナノ秒。clock_gettime
1131-
場合は時間はナノ秒単位で表示され、それ以外の場合はマイクロ秒単位で表示され
1130+
clock_gettime() に依存する。精度の範囲は 1/100 秒からナノ秒。clock_gettime()
1131+
の場合は時間はナノ秒単位で表示され、それ以外の場合はマイクロ秒単位で表示され
11321132
る。`has("prof_nsec")` が使用できる。
11331133

11341134
- 実経過時間が計測される。他のプロセスがビジーであると、それが予測できない箇

en/repeat.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*repeat.txt* For Vim version 9.0. Last change: 2023 May 01
1+
*repeat.txt* For Vim version 9.0. Last change: 2023 May 26
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -308,8 +308,8 @@ For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
308308
'runtimepath'.
309309

310310
If the filetype detection was not enabled yet (this
311-
is usually done with a "syntax enable" or "filetype
312-
on" command in your .vimrc file), this will also look
311+
is usually done with a `syntax enable` or `filetype on`
312+
command in your .vimrc file), this will also look
313313
for "{name}/ftdetect/*.vim" files.
314314

315315
When the optional ! is added no plugin files or
@@ -1149,8 +1149,8 @@ Profiling should give a good indication of where time is spent, but keep in
11491149
mind there are various things that may clobber the results:
11501150

11511151
- The accuracy of the time measured depends on the gettimeofday(), or
1152-
clock_gettime if available, system function. The accuracy ranges from 1/100
1153-
second to nanoseconds. With clock_gettime the times are displayed in
1152+
clock_gettime() if available, system function. The accuracy ranges from
1153+
1/100 second to nanoseconds. With clock_gettime() the times are displayed in
11541154
nanoseconds, otherwise microseconds. You can use `has("prof_nsec")`.
11551155

11561156
- Real elapsed time is measured, if other processes are busy they may cause

0 commit comments

Comments
 (0)