Skip to content

Commit a0035d8

Browse files
mityuh-east
andauthored
Fix style and mistranslations in eval.jax
Apply suggestions from code review Co-authored-by: h_east <[email protected]>
1 parent 5875ddf commit a0035d8

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

doc/eval.jax

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ Note 関数の辞書へのバインドは、その関数が辞書のメンバー
295295
リストの連結 ~
296296
*list-concatenation*
297297
2つのリストを連結するには演算子 "+" を使う: >
298+
:let longlist = mylist + [5, 6]
298299
:let longlist = [5, 6] + mylist
299300
1個の要素を先頭または末尾に付け加えるには、[]で囲んでリストにして連結する。
300301

@@ -745,7 +746,7 @@ Blobの連結 ~
745746
:let longblob = myblob + 0z4455
746747
:let longblob = 0z4455 + myblob
747748
<
748-
Blob は |:let+=| を使うことで、他の Blob と連結することができる: >
749+
Blob は |:let+=| を使うことで、他の Blob とその場で連結することができる: >
749750
:let myblob += 0z6677
750751
<
751752
Blob をその場で (in-place) 変更する他の方法については、|blob-modification|
@@ -1982,13 +1983,13 @@ v:colornames カラー名を16進数カラー文字列に対応付ける辞
19821983
は、|highlight-guifg|, |highlight-guibg|, |highlight-guisp|
19831984
パラメーターで使用できる。
19841985

1985-
Vim は色を小文字の色名で探すので、辞書のキーの値 (色名) は小文字
1986-
であるべきである
1986+
Vim は色を小文字の色名で探すので、辞書のキーの値 (色名) は小文
1987+
字であるべきである
19871988

19881989
v:colornames のエントリを更新しても、構文ハイライトにすぐに作
19891990
用することはない。更新されたカラー値を使用するには、highlight
1990-
コマンド(おそらくカラースキームスクリプト内)を再評価する必要
1991-
がある。例: >
1991+
コマンド(おそらくカラースキームスクリプト内)を再評価する必要が
1992+
ある。例: >
19921993
19931994
:let v:colornames['fuscia'] = '#cf3ab4'
19941995
:let v:colornames['mauve'] = '#915f6d'

0 commit comments

Comments
 (0)