Add more imags to Help

This commit is contained in:
1024jp 2022-05-06 19:08:20 +09:00
parent fd6ce8e9ab
commit 21c4a788c9
38 changed files with 153 additions and 61 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 516 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

View File

@ -17,8 +17,8 @@
</ol>
<p>If it doesnt help, the possible causes are:</p>
<ul>
<li>There is something inadequate in your text (e.g. inadequate programming syntax).</li>
<li>There is something inadequate in your syntax coloring rule.</li>
<li>There is something inadequate in your text (for example, inadequate programming syntax).</li>
<li>There is something inadequate in your syntax coloring definition.</li>
</ul>

View File

@ -10,9 +10,14 @@
<body>
<a name="howto_customize_encoding_order"></a>
<h1>Change priority of encoding detection</h1>
<p>You can prioritize specific encodings to detect text encoding of documents.</p>
<figure>
<img src="../gfx/encodingPriority@2x.png" width="500" alt="Encoding priority setting dialog"/>
</figure>
<p>To change the priority of encoding detection on file opening:</p>
<ol>
<li>Choose CotEditor &gt; Preferences.</li>

View File

@ -11,10 +11,10 @@
<h1>Customize key bindings</h1>
<p>You can fully customize CotEditors menu key bindings. Also, you can store text snippets that have your preferred key bindings assigned. For instance, you can insert “<code>&lt;br /&gt;</code>” (with a line ending) by pressing <kbd>Shift</kbd>-<kbd>Return</kbd>. Go to the Key Bindings pane in the preferences to create your own key bindings.</p>
<p>You can fully customize CotEditors menu key bindings. Also, you can store text snippets that have your preferred key bindings assigned. For example, you can insert “<code>&lt;br /&gt;</code>” (with a line ending) by pressing <kbd>Shift</kbd>-<kbd>Return</kbd>. Go to the Key Bindings pane in the preferences to create your own key bindings.</p>
<ul>
<li>You cannot set the shortcuts that are already taken (e.g. shortcuts for your script files or menu items that dont appear in the Menu Key Bindings list).</li>
<li>You cannot set the shortcuts that are already taken (for example, shortcuts for your script files or menu items that dont appear in the Menu Key Bindings list).</li>
<li>The shortcuts defined in the Script menu are not checked when assigned but will be automatically overridden.</li>
</ul>

View File

@ -11,7 +11,16 @@
<h1>Customize themes</h1>
<p>CotEditors theme is a collection of settings about the editors coloring. To customize themes:</p>
<p>CotEditors theme is a collection of settings about the editors coloring.</p>
<figure>
<img src="../gfx/theme@2x.png" width="400" class="bordered" alt="Theme setting view"/>
</figure>
<h2>Customize a theme</h2>
<p>To select a theme to customize:</p>
<ol>
<li>Choose CotEditor &gt; Preferences.</li>
<li>Select the Appearances pane.</li>
@ -20,8 +29,29 @@
<p>To use an existing theme as a guide for creating your own, choose Duplicate in the action button (gear icon) instead. You can also export your themes and import themes that are created by others.</p>
<h2>Theme file format</h2>
<p>CotEditor theme file must have extension .cottheme and its format is based on JSON with hexadecimal color values with <code>#</code> symbol.</p>
<p>To customize a theme:</p>
<ol>
<li>Click a color well in the theme editor.</li>
<li>Select a color in the Color panel.</li>
</ol>
<p>The change will be saved automatically and applied immediately.</p>
<p>If you check the “Use system color” option, the color specified in the system (System Preferences &gt; General) will be used for the background of the selected text in the editor, instead of a fixed color.</p>
<h2>Switch theme according to the appearance</h2>
<p>A pair of themes with the same theme name but “ (Dark)” (with a space) at the end of one of them will automatically switch themes depending on the windows appearance. In this case, the theme name for light mode can be either the theme name only or the theme name with “ (Light)” at the end. For example, bundled “Anura” and “Anura (Dark)” themes are a pair. So, “Anura” is used when the appearance is light, and “Anura (Dark)” is used in Dark Mode.</p>
<p>However, if you select a theme opposite to the appearance as the default theme, that theme will take precedence regardless of the appearance.</p>
<h2>File format of CotEditor themes</h2>
<p>CotEditor theme file must have extension .cottheme and its format is based on JSON with hexadecimal color values with a <code>#</code> symbol.</p>
<section id="cf">

View File

@ -13,6 +13,10 @@
<p>In multi-cursor editing, the same text can be input at multiple desired points at once.</p>
<figure>
<img src="../gfx/rectangularSelection@2x.png" width="300" class="bordered"/>
</figure>
<p>You can add your insertion points (cursors/selections) in the following ways:</p>
<ul>
<li>To add an insertion point at the desired location, click or drag the point while pressing the <kbd>Command</kbd> key.</li>

View File

@ -46,7 +46,7 @@
<p>As for the text replacing with, all line endings even ones defined as a metacharacter like<code>\n</code> or captured are assumed as the document line ending.</p>
<p>For instance, when replacing the find string “dog\Rcow” with the replacement string “$0\r” using the regular expression in a document whose line ending type is LF (<code>\n</code>), the substring “dog<span class="invisible">\r\n</span>cow” in the document matches as well, and theoretically, the regular expression should replace it with “dog<span class="invisible">\r\n</span>cow<span class="invisible">\r</span>”; however CotEditor actually replaces it with “dog<span class="invisible">\n</span>cow<span class="invisible">\n</span>”.</p>
<p>For example, when replacing the find string “dog\Rcow” with the replacement string “$0\r” using the regular expression in a document whose line ending type is LF (<code>\n</code>), the substring “dog<span class="invisible">\r\n</span>cow” in the document matches as well, and theoretically, the regular expression should replace it with “dog<span class="invisible">\r\n</span>cow<span class="invisible">\r</span>”; however CotEditor actually replaces it with “dog<span class="invisible">\n</span>cow<span class="invisible">\n</span>”.</p>
<p>There is currently no way to replace with line endings other than the document line ending.</p>

View File

@ -11,14 +11,22 @@
<h1>Input a character using Unicode code point</h1>
<p>You can input characters with Unicode code points.</p>
<figure>
<img src="../gfx/unicodeInput@2x.png" width="230" class="bordered" alt="The Unicode input field where is filled “1F603”"/>
</figure>
<p>To input a character with Unicode code point in the hexadecimal format at the current insertion position:</p>
<ol>
<li>Choose Edit &gt; Input in Unicode Code Point.</li>
<li>Enter a code point in the field.</li>
<li>Enter a code point in the field, or select a code point from the history.</li>
<li>Press the <kbd>Return</kbd> key.</li>
</ol>
<p>Unicode character code to input should be just 4 or 5-digit hexadecimal format as well as hexadecimal code with “U+”, “0x”, or “\u” prefixes. For example, “1F603”, “U+1F603”, “0x1F603”, or “\u1F603” are valid to input “😃”.</p>
<p>Unicode character code to input should be just hexadecimal format as well as hexadecimal code with “U+”, “0x”, or “\u” prefixes. For example, “1F603”, “U+1F603”, “0x1F603”, or “\u1F603” are valid to input “😃”.</p>
</body>
</html>

View File

@ -13,6 +13,10 @@
<p>CotEditor can inspect the information about the selected character. Select exactly a single character and choose Inspect Character in the Text menu or press the <kbd>Command</kbd>-<kbd>Option</kbd>-<kbd>I</kbd> keys.</p>
<figure>
<img src="../gfx/characterInspector@2x.png" width="637" alt="The character inspector indicating the information about the character 🐕"/>
</figure>
<p>In the inspector, the character in close-up, the Unicode character name, block name, general category, and the Unicode code point will be displayed. It shows also UTF-16 codes of each character in braces if the character is a surrogate pair. If the selected letter consists actually of multiple Unicode characters, only the code points and Unicode name will be listed-up.</p>
</body>

View File

@ -14,6 +14,12 @@
<h1>Go to a specific line</h1>
<p>When you choose Go to Line in the Find menu, or press Command-L, CotEditor displays the Go To dialog to give you quick access to the line(s) you want to see.</p>
<figure>
<img src="../gfx/jumpToLine@2x.png" width="300" class="bordered" alt="Go to Line dialog"/>
</figure>
<p>In the dialog, enter the line number, and click Go.</p>
<ul>
<li><dl><dt>If you type in “3”:</dt>

View File

@ -17,7 +17,6 @@
<section>
<h2>Use Multiple Replace window</h2>
<p>You can open the Multiple Replace window to manage and process the multiple replacements in your document.</p>
@ -27,11 +26,10 @@
</ul>
<p><img src="../gfx/multiple_replace_panel@2x.png" width="587" alt=""/></p>
</section>
<section>
<h2>Manage replacement definitions</h2>
<p>The stored replacement definitions that you created before are listed in the list on the left.</p>
@ -45,7 +43,6 @@
<section>
<h3>Export/import replacement definitions</h3>
<p>You can export your replacement definitions to transfer them to another computer. Each replacement definition becomes a single <dfn>CotEditor replacement definition</dfn> file, which has a .cotrpl filename extension and of which content is written in JSON format.</p>
@ -54,12 +51,9 @@
<li><b>Export</b>: Select a definition to export in the list on the left, then choose Export or Share in the Advanced menu at the bottom of the list.</li>
<li><b>Import</b>: Drop replacement definition files to the list on the left. Alternatively, choose Import in the Advanced menu, then select the replacement definition files to import.</li>
</ul>
</section>
</section>
<section>
<h2>Process multiple replacements</h2>
<p>The definition selected in the list on the left is shown in the editor area on the right side. The replacement rules in the editor area will be performed row by row from top to bottom at once.</p>
@ -72,16 +66,14 @@
</ul>
<p>* Beware that the matches by the Highlight command can be different from the replacement targets when you perform actual Replace All, because, on the Replace All, the succeeding rows are applied to the document that the previous rows above have already been applied to.</p>
</section>
<section>
<h2>Edit replacement definition</h2>
<p>You can create your own replacement definitions to process multiple replacements.</p>
<section>
<h3>Create a new replacement definition</h3>
<ol>
@ -93,10 +85,9 @@
<p>You dont need to perform a save after the modification because your changes will be saved automatically immediately during the edit.</p>
<p>A row with an invalid replacement rule will just be skipped when the replacement is performed.</p>
</section>
<section>
<h3>Replacement rule options</h3>
<table>
@ -112,18 +103,14 @@
<tr><th>Description</th><td>You can use this field to leave a comment about the rule. The description doesnt affect to replacement. This field can be left blank.</td></tr>
</tbody>
</table>
</section>
</section>
<section>
<h2>Advanced find options</h2>
<p>You can customize the delicate find behavior of replacement from the advanced options view. Those settings are also saved to your replacement definition and applied to all rules in the same replacement definition. Click the gear button in the Multiple Replace window, then click checkboxes to change the behavior.</p>
<p>To learn about details of each option item, see <a href="howto_find.html">Find or replace text</a>.</p>
</section>

View File

@ -13,6 +13,10 @@
<p>You can select a rectangular area in your document. To do so, drag and select text while holding down the <kbd>Option</kbd> key.</p>
<figure>
<img src="../gfx/rectangularSelection@2x.png" width="300" class="bordered"/>
</figure>
<section id="cf">
<h2>See also</h2>

View File

@ -151,7 +151,7 @@
<ul>
<li><strong>Words in document</strong>: The list includes the words that appear in your document.</li>
<li><strong>Words defined in syntax style</strong>: The list includes the words defined by your syntax style (in the case youve not specified any completions, the words generated by the syntax coloring rule appear).</li>
<li><strong>Words defined in syntax style</strong>: The list includes the words <a href="syntax_completion_settings.html">defined in the syntax style</a> (in the case youve not specified any completions, the words generated by the syntax style definition appear).</li>
<li><strong>Standard words</strong>: The list includes standard words.</li>
</ul></td>

View File

@ -24,7 +24,7 @@
</tbody>
</table>
<p>If no words here, the words generated by your syntax coloring rule will appear in the list.</p>
<p>If no words here, the words generated from your syntax coloring definition will appear in the list.</p>
<section id="cf">

View File

@ -65,7 +65,7 @@
</tbody>
</table>
<p>CotEditor colors the code elements in the following order: 1) keywords, 2) commands, 3) types, 4) attributes, 5) variables, 6) values, 7) numbers, 8) strings, 9) characters, 10) comments. When your document contains an item to be colored that matches multiple categories (e.g. keywords and commands), the color of the latter in the order will overwrite the formers.</p>
<p>CotEditor colors the code elements in the following order: 1) keywords, 2) commands, 3) types, 4) attributes, 5) variables, 6) values, 7) numbers, 8) strings, 9) characters, 10) comments. When your document contains an item to be colored that matches multiple categories (for example, keywords and commands), the color of the latter in the order will overwrite the formers.</p>

View File

@ -19,7 +19,7 @@
<summary>Inspect documents</summary>
<ul>
<li><a href="pgs/howto_inspect_fileinfo.html">Get information about a document</a></li>
<li><a href="pgs/howto_show_glyph_info.html">Get information about a character</a></li>
<li><a href="pgs/howto_inspect_character.html">Get information about a character</a></li>
<li><a href="pgs/about_line_endings.html">Handle various types of line endings</a></li>
<li><a href="pgs/howto_find_newline.html">Find inconsistent line endings</a></li>
<li><a href="pgs/howto_jump.html">Go to a specific line</a></li>

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 350 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

View File

@ -10,9 +10,14 @@
<body>
<a name="howto_customize_encoding_order"></a>
<h1>テキストエンコーディングの認識順序を変更する</h1>
<p>書類のテキストエンコーディングを自動認識するときの順序を変更して、特定のエンコーディングを優先することができます。</p>
<figure>
<img src="../gfx/encodingPriority@2x.png" width="500" alt="エンコーディング優先順位設定ダイアログ"/>
</figure>
<p>テキストエンコーディングの自動認識順序を変更するには次のようにします。</p>
<ol>
<li>CotEditorメニューの「環境設定」を開きます。</li>

View File

@ -11,16 +11,43 @@
<h1>テーマを設定する</h1>
<p>テーマは、CotEditorのエディタのカラーリング定義をまとめたものです。テーマを設定する手順は次の通りです。</p>
<p>テーマは、CotEditorのエディタのカラーリング定義をまとめたものです。</p>
<figure>
<img src="../gfx/theme@2x.png" width="600" class="bordered" alt="テーマ設定ビュー"/>
</figure>
<h2>テーマを設定する</h2>
<p>設定したいテーマを選択する手順は次の通りです。</p>
<ol>
<li>CotEditorメニューの「環境設定」を選びます。</li>
<li>「表示」タブを開きます。</li>
<li>「テーマ」リストから設定したいテーマを選択します。</li>
<li>CotEditorメニューの「環境設定」を選</li>
<li>「表示」タブを開</li>
<li>「テーマ」リストから設定したいテーマを選択す</li>
</ol>
<p>既存のテーマを参考にして独自のテーマを作成するには、アクションボタン(歯車アイコン)から「複製」を選択してください。アクションボタンから自作のテーマを書き出したり外部テーマを読み込むこともできます。</p>
<h2>CotEditorテーマのフォーマット</h2>
<p>テーマを設定する手順は次の通りです。</p>
<ol>
<li>設定するカラーのカラーウェルをクリックする。</li>
<li>カラーパネルでカラーを選択する。</li>
</ol>
<p>変更は自動で保存されすぐに反映されます。</p>
<p>「システムカラーを使う」にチェックを入れたときは、固定のカラーではなくシステム(「システム環境設定」>「一般」)で設定されたカラーが、エディタで選択されたテキストの背景に使われます。</p>
<h2>テーマを外観モードで切り替える</h2>
<p>同じテーマ名で片方の末尾に「 (Dark)」が付いている対のテーマは、ウインドウの外観モードに応じて自動的にテーマが切り替わって使用されます。このとき、ライトモード用のテーマ名はテーマ名のみ、または末尾に「 (Light)」が付いたものどちらでもかまいません。例えば、バンドルされているテーマのうち「Anura」と「Anura (Dark)」は対になっており、ライトモードのときは「Anura」が、ダークモードのときは「Anura (Dark)」が使われます。</p>
<p>ただし、外観テーマと逆のテーマをデフォルトテーマとして設定した場合は、外観モードに関わらずそちらが優先して使われます。</p>
<h2>CotEditorテーマのファイルフォーマット</h2>
<p>CotEditorテーマファイルは「.cottheme」という独自の拡張子を持ち、ファイルフォーマットはJSONと16進カラーコードを基調としています。</p>

View File

@ -13,6 +13,10 @@
<p>マルチカーソル編集では、任意の複数箇所に同時に同じテキストを入力することができます。</p>
<figure>
<img src="../gfx/rectangularSelection@2x.png" width="300" class="bordered"/>
</figure>
<p>編集箇所(カーソルまたは選択範囲)を追加するには以下のようにします:</p>
<ul>
<li>任意の場所に編集箇所を追加するには、<kbd>Command</kbd>を押しながらクリックまたはドラッグします。</li>

View File

@ -11,14 +11,21 @@
<h1>文字をUnicodeのコードポイントで入力する</h1>
<p>文字をUnicodeコードポイントで入力することができます。</p>
<figure>
<img src="../gfx/unicodeInput@2x.png" width="230" class="bordered" alt="The Unicode input field where is filled “1F603”"/>
</figure>
<p>現在の挿入ポイントにUnicodeコードポイントの16進数表現で文字を入力するには次のようにします。</p>
<ol>
<li>「編集」メニューの「Unicodeコードポイントで入力」を選択</li>
<li>出現したフィールドにUnicodeを16進数フォーマットで入力</li>
<li><kbd>Return</kbd>キーを押す</li>
<li>「編集」メニューの「Unicodeコードポイントで入力」を選択する。</li>
<li>出現したフィールドにUnicodeを16進数フォーマットで入力する、もしくは履歴から入力したいコードポイントを選択する。</li>
<li><kbd>Return</kbd>キーを押す</li>
</ol>
<p>入力するコードポイントは、4-5桁の16進数のみか、もしくは「U+」, 「0x」, 「\u」を接頭辞としてそれに付けた形式が利用できます。例えば、「😃」を入力するためには「1F603」もしくは「U+1F603」, 「0x1F603」, 「\u1F603」が有効です。</p>
<p>入力するコードポイントは、16進数のみか、もしくは「U+」, 「0x」, 「\u」を接頭辞としてそれに付けた形式が利用できます。例えば、「😃」を入力するためには「1F603」もしくは「U+1F603」, 「0x1F603」, 「\u1F603」が有効です。</p>
</body>
</html>

View File

@ -13,6 +13,10 @@
<p>CotEditorは選択している文字の情報を表示できます。1文字だけ選択した状態で「テキスト」メニューの「文字情報を表示」を選択するか、ショートカットキー<kbd>Command</kbd>+<kbd>Option</kbd>+<kbd>I</kbd>を押してください。</p>
<figure>
<img src="../gfx/characterInspector@2x.png" width="637" alt="🐕の文字の情報を表示する文字インスペクタ"/>
</figure>
<p>表示には、拡大表示された文字、Unicode文字名、Unicodeブロック名、Unicodeカテゴリ名、Unicodeコードポイントが表示されます。選択された文字がサロゲートペアの場合には、括弧内に分割されたコードポイントも表示します。選択された文字が実際には複数のUnicode文字から成り立っていた場合は内包するコードポイントと文字名のみがリストアップされます。</p>
</body>

View File

@ -14,6 +14,12 @@
<h1>特定の行に移動する</h1>
<p>「検索」メニューの「行に移動」(<kbd>Command</kbd>+<kbd>L</kbd>)で移動ダイアログが表示され、移動先の範囲指定が可能です。</p>
<figure>
<img src="../gfx/jumpToLine@2x.png" width="300" class="bordered" alt="行に移動ダイアログ"/>
</figure>
<p>移動ダイアログでは選択したい数値を入力して「移動」ボタンをクリックします。</p>
<ul>
<li><dl><dt>「3」を入力</dt>

View File

@ -17,7 +17,6 @@
<section>
<h2>複数置換ウインドウを使う</h2>
<p>複数置換ウインドウで、置換定義を作成したり、その定義を実行できます。</p>
@ -27,11 +26,9 @@
</ul>
<p><img src="../gfx/multiple_replace_panel@2x.png" width="587" alt=""/></p>
</section>
<section>
<h2>置換定義を管理する</h2>
<p>作成した置換定義は左側のリストに一覧表示されます。</p>
@ -45,7 +42,6 @@
<section>
<h3>置換定義を書き出す/読み込む</h3>
<p>作成した置換定義をほかのコンピュータで使用するために、定義を書き出すことができます。置換定義1つあたり1つの<dfn>置換定義</dfn>ファイルが作成されます。定義ファイルは.cotrpl拡張子を持ちJSON形式で記述されています。</p>
@ -54,12 +50,9 @@
<li><b>書き出し</b>: 左側のリストで書き出したい定義を選択し、リスト下部の詳細メニューから「書き出し」か「共有」を選択してください。</li>
<li><b>読み込み</b>: 置換定義ファイルを複数置換ウインドウ左側のリスト欄にドロップしてください。あるいは、リスト下部の詳細メニューから「読み込み」を選択し、読み込みたい置換定義ファイルを選択してください。</li>
</ul>
</section>
</section>
<section>
<h2>置換定義を実行する</h2>
<p>左側のリストで選択された置換定義の内容が、右側の編集エリアに表示されます。実行すると、編集エリアの置換条件が上から順に適用されます。</p>
@ -72,15 +65,14 @@
</ul>
<p>* 「すべて置換」では、上位の置換条件を適用し変更が加えられた書類内容に対して次の条件を適用していくため、「ハイライト」コマンドの結果は実際に「すべて置換」を実行したときの置換対象と異なる場合があることに留意してください。</p>
</section>
<section>
<h2>置換定義を編集する</h2>
<p>複数置換をおこなう置換定義を作成できます。</p>
<section>
<h3>新規置換定義を作成する</h3>
<ol>
@ -92,9 +84,8 @@
<p>定義の保存は随時自動で行われるため、変更後に明示的に保存をする必要がありません。</p>
<p>無効な置換条件は置換実行時にスキップされます。</p>
</section>
<section>
<h3>置換定義オプション</h3>
<table>
@ -110,17 +101,13 @@
<tr><th>説明</th><td>登録する語句にメモがある場合はこの欄を使用できます。この項目は置換には影響せず、空でも構いません。</td></tr>
</tbody>
</table>
</section>
</section>
<section>
<h2>詳細検索オプション</h2>
<p>詳細オプション画面からより細かな検索の振る舞いを設定できます。ここでの設定は置換定義に保存され、同一置換定義内のすべての置換条件に適用されます。詳細オプション画面は複数置換ウインドウの編集エリア下部のギアボタンをクリックすると開きます。</p>
<p>オプションの各項目については「<a href="howto_find.html">テキストを検索/置換する</a>」を参照してください。</p>
</section>

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="矩形選択"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<title>矩形選択する</title>
<title>テキストを矩形選択する</title>
</head>
<body>
@ -13,6 +13,10 @@
<p>テキストを矩形選択するには、<kbd>Option</kbd>キーを押しながらマウスをドラッグして、テキストを選択します。</p>
<figure>
<img src="../gfx/rectangularSelection@2x.png" width="300" class="bordered"/>
</figure>
<section id="cf">
<h2>関連項目</h2>

View File

@ -152,7 +152,7 @@
<ul>
<li><strong>書類に含まれる単語</strong>: 書類に含まれる単語が候補に含まれます。</li>
<li><strong>シンタックススタイルで定義された単語</strong>: シンタックススタイルで設定された入力補完候補リスト(設定されていなければカラーリング設定から生成)の単語が候補に含まれます。</li>
<li><strong>シンタックススタイルで定義された単語</strong>: <a href="syntax_completion_settings.html">シンタックススタイルで設定</a>された入力補完候補リスト(設定されていなければカラーリング設定から生成)の単語が候補に含まれます。</li>
<li><strong>一般英単語</strong>: 一般英単語が候補に含まれます。</li>
</ul></td>

View File

@ -90,7 +90,7 @@
<dd>折り返しているかどうかboolean型</dd>
<dt><code>coloring style</code></dt>
<dd>シンタックスカラーリングスタイルUnicode text型</dd>
<dd>シンタックススタイルUnicode text型</dd>
<dt><del><code>line spacing</code></del></dt>
<dd><del>行間値real型、0.0から10.0の範囲)</del><span class="deprecated">CotEditor 2.6で廃止</span></dd>

View File

@ -19,7 +19,7 @@
<summary>書類を見る/調べる</summary>
<ul>
<li><a href="pgs/howto_inspect_fileinfo.html">書類の情報を見る</a></li>
<li><a href="pgs/howto_show_glyph_info.html">文字情報を表示する</a></li>
<li><a href="pgs/howto_inspect_character.html">文字情報を表示する</a></li>
<li><a href="pgs/about_line_endings.html">多様な改行コードを扱う</a></li>
<li><a href="pgs/howto_find_newline.html">混在する改行コードを探す</a></li>
<li><a href="pgs/howto_jump.html">特定の行に移動する</a></li>