@@ -404,14 +404,14 @@ CTRL-X カーソルの下または後の数字またはアルファベット
404
404
される (そのため効果的に [count] ごとに減少する配列を
405
405
作ることができる)。 {Vi にはない}
406
406
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
+ 数として扱う。
415
415
- 'nrformats' が "octal" を含むときは、Vimは '0' で始まり、'8' や '9' を含まな
416
416
い数字を8進数として取り扱う。他の数は10進数とみなされ、マイナス符号が付いて
417
417
もよい。カーソルが数の上にあれば、コマンドはその数に適用される。そうでなけれ
@@ -438,9 +438,9 @@ CTRL-X を使うと "0x0ff" となる。
438
438
Note: 'nrformats' が "octal" を含んでいるとき、0で始まる10進数は、8進数と区別
439
439
しづらいため、意図しない結果になる可能性がある。
440
440
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 のような値のこと。}
444
444
445
445
コマンド CTRL-A はマクロ内でたいへん便利である。例: 番号付きリストを作るには、
446
446
次の方法を使う。
@@ -851,9 +851,9 @@ NOTE: 以前のバージョンでは CTRL-V が特別に扱われていた。こ
851
851
*:sic* *:sIc* *:sie* *:sIe* *:sIg* *:sIl* *:sin* *:sIn* *:sIp*
852
852
*:sip* *:sIr* *:sir* *:sr* *:src* *:srg* *:sri* *:srI* *:srl*
853
853
*:srn* *:srp*
854
- 2-letter and 3-letter :substitute commands ~
854
+ 2文字もしくは3文字の :substitute コマンド ~
855
855
856
- List of :substitute commands
856
+ :substitute コマンド一覧
857
857
| c e g i I n p l r
858
858
| c :sc :sce :scg :sci :scI :scn :scp :scl ---
859
859
| e
@@ -865,7 +865,7 @@ NOTE: 以前のバージョンでは CTRL-V が特別に扱われていた。こ
865
865
| l
866
866
| r :src --- :srg :sri :srI :srn :srp :srl :sr
867
867
868
- Exceptions :
868
+ 例外 :
869
869
:scr is `:scriptnames `
870
870
:se is `:set `
871
871
:sig is `:sign `
@@ -1695,17 +1695,17 @@ Vimはソート関数とソートコマンドを備えている。ソート関
1695
1695
1696
1696
[i]をつけると大文字・小文字を区別しない。
1697
1697
1698
- Options [n][f][x][o][b] are mutually exclusive.
1698
+ [n][f][x][o][b] オプションはどれかひとつのみ指定できる。
1699
1699
1700
1700
[n]をつけると行の({pattern} のマッチの後ろまたは内側
1701
1701
の)最初の10進数の数字でソートする。
1702
1702
数字が '-' で始まる場合、マイナスとみなされる。
1703
1703
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
+ パイルされたときのみ使える。
1709
1709
1710
1710
[x]をつけると行の({pattern} のマッチの後ろまたは内側
1711
1711
の)最初の16進数の数字でソートする。"0x" と "0X" は無視
@@ -1715,8 +1715,8 @@ Vimはソート関数とソートコマンドを備えている。ソート関
1715
1715
[o]をつけると行の({pattern} のマッチの後ろまたは内側
1716
1716
の)最初の8進数の数字でソートする。
1717
1717
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進数でソートする。
1720
1720
1721
1721
[u]をつけると (u は unique=「一意の」という意味に基づ
1722
1722
く) 連続する同一行の最初の行だけを残す。([i]がつくと大
0 commit comments