Skip to content

Commit 7bbe06f

Browse files
committed
Merge pull request #183 from rhysd/issue164-change
Translated remaining parts in doc/change.jax #164
2 parents fce2b5f + d86a6fc commit 7bbe06f

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-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
@@ -40,6 +39,7 @@
4039
### 完訳!
4140

4241
doc/autocmd.jax
42+
doc/change.jax
4343
doc/cmdline.jax
4444
doc/develop.jax
4545
doc/editing.jax

doc/change.jax

Lines changed: 22 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,9 @@ 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進数の桁として有効だからである。
443+
{訳注: 0x0b0011 のような値のこと。}
444444

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

856-
List of :substitute commands
856+
:substitute コマンド一覧
857857
| c e g i I n p l r
858858
| c :sc :sce :scg :sci :scI :scn :scp :scl ---
859859
| e
@@ -865,7 +865,7 @@ NOTE: 以前のバージョンでは CTRL-V が特別に扱われていた。こ
865865
| l
866866
| r :src --- :srg :sri :srI :srn :srp :srl :sr
867867

868-
Exceptions:
868+
例外:
869869
:scr is `:scriptnames`
870870
:se is `:set`
871871
:sig is `:sign`
@@ -1695,17 +1695,17 @@ Vimはソート関数とソートコマンドを備えている。ソート関
16951695

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

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

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

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.
1704+
[f] をつけると行の小数点数でソートする。
1705+
小数点数の値は ({pattern} によるマッチの後ろまたは内側
1706+
の) テキストを str2float() に渡すようにして決定される。
1707+
このオプションは Vim が小数点数サポートを有効にしてコン
1708+
パイルされたときのみ使える。
17091709

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

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

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

0 commit comments

Comments
 (0)