Skip to content

Commit 4d892cf

Browse files
committed
translate remaining parts in doc/change.jax #164
1 parent 1234569 commit 4d892cf

File tree

2 files changed

+22
-23
lines changed

2 files changed

+22
-23
lines changed

catchup-7.4.1194.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
以上は変更点が100行未満なので、翻訳しやすいはず。
2121

22-
doc/change.jax
2322
doc/if_lua.jax # 100行超えたけど、内容的に大したことない
2423
doc/insert.jax
2524
doc/netbeans.jax
@@ -42,6 +41,7 @@
4241
### 完訳!
4342

4443
doc/autocmd.jax
44+
doc/change.jax
4545
doc/cmdline.jax
4646
doc/develop.jax
4747
doc/editing.jax

doc/change.jax

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -404,14 +404,14 @@ CTRL-X カーソルの下または後の数字またはアルファベット
404404
される (そのため効果的に [count] ごとに減少する配列を
405405
作ることができる)。 {Vi にはない}
406406

407-
The CTRL-A and CTRL-X commands can work for:
408-
- signed and unsigned decimal numbers
409-
- unsigned binary, octal and hexadecimal numbers
410-
- alphabetic characters
411-
412-
This depends on the 'nrformats' option:
413-
- When 'nrformats' includes "bin", Vim assumes numbers starting with '0b' or
414-
'0B' are binary.
407+
CTRL-A CTRL-X が適用できるのは:
408+
- 符号付き及び符号なし10進数
409+
- 符号なし2進数、8進数および16進数
410+
- アルファベット文字
411+
412+
'nrformats' オプションに依存している:
413+
- 'nrformats' "bin" が含まれる時、Vim は '0b' または '0B' で始まる数値を2進
414+
数として扱う。
415415
- 'nrformats' が "octal" を含むときは、Vimは '0' で始まり、'8' や '9' を含まな
416416
い数字を8進数として取り扱う。他の数は10進数とみなされ、マイナス符号が付いて
417417
もよい。カーソルが数の上にあれば、コマンドはその数に適用される。そうでなけれ
@@ -438,9 +438,8 @@ CTRL-X を使うと "0x0ff" となる。
438438
Note: 'nrformats' が "octal" を含んでいるとき、0で始まる10進数は、8進数と区別
439439
しづらいため、意図しない結果になる可能性がある。
440440

441-
Note similarly, when 'nrformats' includes "bin", binary numbers with a leading
442-
'0x' or '0X' can be interpreted as hexadecimal rather than binary since '0b'
443-
are valid hexadecimal digits.
441+
Note: 'nrformats' が "bin" を含んでいるとき、'0x' または '0X' で始まる2進数は
442+
16進数として解釈される。これは '0b' が16進数の桁として有効だからである。
444443

445444
コマンド CTRL-A はマクロ内でたいへん便利である。例: 番号付きリストを作るには、
446445
次の方法を使う。
@@ -851,9 +850,9 @@ NOTE: 以前のバージョンでは CTRL-V が特別に扱われていた。こ
851850
*:sic* *:sIc* *:sie* *:sIe* *:sIg* *:sIl* *:sin* *:sIn* *:sIp*
852851
*:sip* *:sIr* *:sir* *:sr* *:src* *:srg* *:sri* *:srI* *:srl*
853852
*:srn* *:srp*
854-
2-letter and 3-letter :substitute commands ~
853+
2文字もしくは3文字の :substitute コマンド ~
855854

856-
List of :substitute commands
855+
:substitute コマンドリスト
857856
| c e g i I n p l r
858857
| c :sc :sce :scg :sci :scI :scn :scp :scl ---
859858
| e
@@ -865,7 +864,7 @@ NOTE: 以前のバージョンでは CTRL-V が特別に扱われていた。こ
865864
| l
866865
| r :src --- :srg :sri :srI :srn :srp :srl :sr
867866

868-
Exceptions:
867+
例外:
869868
:scr is `:scriptnames`
870869
:se is `:set`
871870
:sig is `:sign`
@@ -1695,17 +1694,17 @@ Vimはソート関数とソートコマンドを備えている。ソート関
16951694

16961695
[i]をつけると大文字・小文字を区別しない。
16971696

1698-
Options [n][f][x][o][b] are mutually exclusive.
1697+
[n][f][x][o][b] オプションはどれかひとつのみ指定できる。
16991698

17001699
[n]をつけると行の({pattern}のマッチの後ろまたは内側
17011700
の)最初の10進数の数字でソートする。
17021701
数字が '-' で始まる場合、マイナスとみなされる。
17031702

1704-
With [f] sorting is done on the Float in the line.
1705-
The value of Float is determined similar to passing
1706-
the text (after or inside a {pattern} match) to
1707-
str2float() function. This option is available only
1708-
if Vim was compiled with Floating point support.
1703+
[f] をつけると行中の小数点数でソートする。
1704+
小数点数の値は ({pattern} によるマッチの後ろまたは内側
1705+
の) テキストを str2float() に渡すようにして決定される。
1706+
このオプションは Vim が小数点数サポートを有効にしてコン
1707+
パイルされたときのみ使える。
17091708

17101709
[x]をつけると行の({pattern}のマッチの後ろまたは内側
17111710
の)最初の16進数の数字でソートする。"0x" と "0X" は無視
@@ -1715,8 +1714,8 @@ Vimはソート関数とソートコマンドを備えている。ソート関
17151714
[o]をつけると行の({pattern}のマッチの後ろまたは内側
17161715
の)最初の8進数の数字でソートする。
17171716

1718-
With [b] sorting is done on the first binary number in
1719-
the line (after or inside a {pattern} match).
1717+
[b] をつけると ({pattern}によるマッチの後ろまたは内側の)
1718+
行の中の最初の2進数でソートする。
17201719

17211720
[u]をつけると (u は unique=「一意の」という意味に基づ
17221721
く) 連続する同一行の最初の行だけを残す。([i]がつくと大

0 commit comments

Comments
 (0)