Update help contents

This commit is contained in:
1024jp 2023-02-05 18:52:24 +09:00
parent ec192617d7
commit 911a2dfa04
29 changed files with 411 additions and 297 deletions

View File

@ -2697,7 +2697,7 @@ no change.
- Refine dialog messages on text encoding change.
- Change sidebar behavior to close inward when it was opened inward because of insufficient space.
- Avoid requiring high power GPU use.
- [trivial] Hide insertion point in shortcut input fields in the Key Binding pane.
- [trivial] Hide insertion point in shortcut input fields in the Key Bindings pane.
- [trivial] Set a spoken name of CotEditor.
- [trivial] Add `enablesAsynchronousSaving` hidden default key that enables asynchronous saving.
- [non-AppStore ver.] Update Sparkle framework.

View File

@ -56,7 +56,7 @@
<section id="cf">
<h2>See also</h2>
<ul>
<li><a href="settings_filedrop.html">Change File Drop settings</a></li>
<li><a href="settings_snippets.html">Change Snippets settings</a></li>
</ul>
</section>

View File

@ -1,30 +0,0 @@
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="key binding, keyboard shortcut"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<title>If your key bindings dont work as you expect in CotEditor</title>
</head>
<body>
<h1>If your key bindings dont work as you expect in CotEditor</h1>
<p>If a key binding you set doesnt work properly chances are that:</p>
<ul>
<li>The key binding is already taken by another function.</li>
<li>You have set the key binding in the Menu Item settings, but the same key binding exists in the Snippet setting. In this case, the latter takes precedence.</li>
</ul>
<section id="cf">
<h2>See also</h2>
<ul>
<li><a href="howto_customize_keybinding.html">Customize key bindings</a></li>
<li><a href="settings_keybindings.html">Change Key Bindings settings</a></li>
</ul>
</section>
</body>
</html>

View File

@ -0,0 +1,30 @@
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="key binding, shortcut"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<title>If your keyboard shortcut doesnt work as you expect in CotEditor</title>
</head>
<body>
<h1>If your keyboard shortcut doesnt work as you expect in CotEditor</h1>
<p>If a shortcut you set doesnt work properly chances are that:</p>
<ul>
<li>The shortcut is already taken by another function.</li>
<li>Especially in the editor, inputting a special character can take precedence over performing a command when typing a letter key with modifier keys.</li>
</ul>
<section id="cf">
<h2>See also</h2>
<ul>
<li><a href="howto_customize_shortcut.html">Customize keyboard shortcuts</a></li>
<li><a href="settings_keybindings.html">Change Key Bindings settings</a></li>
</ul>
</section>
</body>
</html>

View File

@ -1,30 +0,0 @@
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="key bindings"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<title>Customize key bindings in CotEditor</title>
</head>
<body>
<h1>Customize key bindings in CotEditor</h1>
<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 Settings to create your own key bindings.</p>
<ul>
<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>
<section id="cf">
<h2>See also</h2>
<ul>
<li><a href="settings_keybindings.html">Change Key Bindings settings</a></li>
</ul>
</section>
</body>
</html>

View File

@ -0,0 +1,57 @@
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="key bindings, shortcut"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<title>Customize keyboard shortcuts in CotEditor</title>
</head>
<body>
<h1>Customize keyboard shortcuts in CotEditor</h1>
<p>You can fully customize keyboard shortcuts for various commands in CotEditor.</p>
<p>The method to change shortcuts depends on the type of the command:</p>
<table>
<caption>Methods to define keyboard shortcuts</caption>
<thead>
<tr><th>Type</th><th>Description</th></tr>
</thead>
<tbody>
<tr>
<th>Menu command</th>
<td>Keyboard shortcuts for standard menu command displayed in the menu. Go to the <a href="settings_keybindings.html">Key Bindings settings</a> in the Settings to change the keyboard shortcut for existing menu commands.
<ul>
<li>Some menu commands provided by the system can not be customized in CotEditor. For details about customizing the standard shortcuts for Cocoa applications, see Apples documentation: <a href="https://support.apple.com/guide/mac-help/create-keyboard-shortcuts-for-apps-mchlp2271/mac" rel="external">Create keyboard shortcuts for apps on Mac</a></li>
</ul></td>
</tr>
<tr>
<th>Snippet insertion</th>
<td>Keyboard shortcuts for commands to insert a user snippet (preset text). The commands inserting snippets appear in the menu too, but the shortcuts to these commands are not set in the Key Bindings settings but in the <a href="settings_snippets.html">Snippets</a> settings.</td>
</tr>
<tr>
<th>CotEditor script</th>
<td>Keyboard shortcuts to execute users CotEditor scripts. Include a specific character combination to the script file name to define a keyboard shortcut. See <a href="script_menu.html">Customize Script menu</a> for details.</td>
</tr>
</tbody>
</table>
<p>You cannot set the shortcuts that are already taken (for example, shortcuts for your scripts or menu items that dont appear in the list). When the same shortcut is assigned to multiple commands, it performs only one command among them.</p>
<section id="cf">
<h2>See also</h2>
<ul>
<li><a href="settings_keybindings.html">Change Key Bindings settings</a></li>
<li><a href="settings_snippets.html">Change Snippets settings</a></li>
<li><a href="script_menu.html">Customize Script menu</a></li>
<li><a href="faq_shortcut.html">If your keyboard shortcut doesnt work as you expect</a></li>
</ul>
</section>
</body>
</html>

View File

@ -22,13 +22,13 @@
<h2>Define File Drop</h2>
<p> To configure the behavior of File Drop, go to CotEditor &gt; Settings &gt; <a href="settings_filedrop.html">File Drop</a>.</p>
<p> To configure the behavior of File Drop, go to CotEditor &gt; Settings &gt; <a href="settings_snippets.html">Snippets</a> &gt; File Drop.</p>
<section id="cf">
<h2>See also</h2>
<ul>
<li><a href="settings_filedrop.html">Change File Drop settings</a></li>
<li><a href="settings_snippets.html">Change Snippets settings</a></li>
<li><a href="about_filedrop.html">Write insertion format for File Drop</a></li>
</ul>
</section>

View File

@ -3216,7 +3216,7 @@
<li>Refine dialog messages on text encoding change.</li>
<li>Change sidebar behavior to close inward when it was opened inward because of insufficient space.</li>
<li>Avoid requiring high power GPU use.</li>
<li><span class="trivial">trivial</span>: Hide insertion point in shortcut input fields in the Key Binding pane.</li>
<li><span class="trivial">trivial</span>: Hide insertion point in shortcut input fields in the Key Bindings pane.</li>
<li><span class="trivial">trivial</span>: Set a spoken name of CotEditor.</li>
<li><span class="trivial">trivial</span>: Add <code>enablesAsynchronousSaving</code> hidden default key that enables asynchronous saving.</li>
<li><span class="label">non-AppStore ver.</span>: Update Sparkle framework.</li>

View File

@ -34,11 +34,11 @@
<li><a href="settings_format.html">Format</a>:
Set the default format for documents such as line ending type and text encoding, and manage syntax styles.</li>
<li><a href="settings_filedrop.html">File Drop</a>:
Choose how to insert a preset text when you drop a file onto the editor.</li>
<li><a href="settings_snippets.html">Snippets</a>:
Define preset text to insert with your preferred keyboard shortcuts or by dropping files onto the editor.</li>
<li><a href="settings_keybindings.html">Key Bindings</a>:
Customize keyboard shortcuts to execute menu item commands, and store some text snippets you use frequently along with your preferred keyboard shortcuts.</li>
Customize keyboard shortcuts to execute menu commands.</li>
<li><a href="settings_print.html">Print</a>:
Set the default style for document printing.</li>

View File

@ -36,7 +36,7 @@
<tr>
<th>Swap “¥” and “\” keys</th>
<td>Input a backslash (\) using the key binding for the Yen sign (¥), and vice versa.</td>
<td>Input a backslash (\) using the key for the Yen sign (¥), and vice versa.</td>
</tr>
<tr>

View File

@ -1,63 +0,0 @@
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="File Drop settings, File Drop"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<title>Change File Drop settings in CotEditor</title>
</head>
<body>
<a name="settings_filedrop"></a>
<h1>Change File Drop settings in CotEditor</h1>
<p>In the CotEditor app <img class="appicon" src="../../Shared/gfx/icon_16x16@2x.png" height="16" alt=""/> on your Mac, use File Drop settings to choose how to insert a preset text when you drop a file onto the editor. To change these settings, choose CotEditor &gt; Settings, then click File Drop.</p>
<p class="openapp"><a href="x-help-action://openApp?bundleId=com.coteditor.CotEditor">Open CotEditor for me</a></p>
<table class="settings">
<thead>
<tr><th>Option</th><th>Description</th></tr>
</thead>
<tbody>
<tr>
<th>File Drop Definitions</th>
<td>Choose the conditons to perform the file drop.<ul>
<li><strong>Extensions</strong>: The setting is performed only when a file with one of these extensions is dropped. If this field is empty (All), all files are eligible. No dot is required for filename extensions. You can set multiple extensions by separating them by a comma.</li>
<li><strong>Syntax Style</strong>: The setting is performed only when a file is dropped to a document having this syntax style. If this field is empty (All), all documents are eligible.</li>
<li><strong>Description</strong>: You can use this field to leave a comment about the row. This field doesnt affect the file drop behavior and can be left blank.</li>
</ul>
</td>
</tr>
<tr>
<th>Insertion formart</th>
<td>Set the text to be inserted for the condition that is selected in the file drop definition list above.</td>
</tr>
<tr>
<th>Variables</th>
<td>You can use CotEditors variables in an insertion format.
<ul>
<li>Variables are going to be replaced with the corresponding information of the dropped file. See <a href="about_filedrop.html">Write insertion format for File Drop</a> for each variables details.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<section id="cf">
<h2>See also</h2>
<ul>
<li><a href="howto_filedrop.html">Drop files to editor</a></li>
<li><a href="about_filedrop.html">Write insertion format for File Drop</a></li>
<li><a href="settings.html">Change settings</a></li>
</ul>
</section>
</body>
</html>

View File

@ -2,7 +2,7 @@
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="Key Bindings settings, key binding, keyboard shortcut, snippet"/>
<meta name="keywords" content="Key Bindings settings, shortcuts, keyboard shortcut, shortcut"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<title>Change Key Bindings settings in CotEditor</title>
</head>
@ -12,48 +12,25 @@
<h1>Change Key Bindings settings in CotEditor</h1>
<p>In the CotEditor app <img class="appicon" src="../../Shared/gfx/icon_16x16@2x.png" height="16" alt=""/> on your Mac, use Key Bindings settings to customize keyboard shortcuts to execute menu item commands, and to store some text snippets you use frequently along with your preferred keyboard shortcuts. To change these settings, choose CotEditor &gt; Settings, then click Key Bindings.</p>
<p>In the CotEditor app <img class="appicon" src="../../Shared/gfx/icon_16x16@2x.png" height="16" alt=""/> on your Mac, use Key Bindings settings to customize keyboard shortcuts to execute menu commands. To change these settings, choose CotEditor &gt; Settings, then click Key Bindings.</p>
<p class="openapp"><a href="x-help-action://openApp?bundleId=com.coteditor.CotEditor">Open CotEditor for me</a></p>
<table class="settings">
<caption>Menu Items</caption>
<thead>
<tr><th>Option</th><th>Description</th></tr>
</thead>
<tbody>
<tr>
<th>Shotcuts list</th>
<td>Change the key bindings for menu items.</td>
<th>Key</th>
<td>Change the keyboard shortcuts for menu items. See <a href="howto_customize_shortcut.html">Customize keyboard shortcuts</a> for details</td>
</tr>
</tbody>
</table>
<table class="settings">
<caption>Snippets</caption>
<thead>
<tr><th>Option</th><th>Description</th></tr>
</thead>
<tbody>
<tr>
<th>Shotcuts list</th>
<td>Set shortcut to insert your text snippet.</td>
</tr>
<tr>
<th>Insertion formart</th>
<td>Set text snippet to insert with the shortcut selected in the list above. When a snippet contains <code>&lt;&lt;&lt;CURSOR&gt;&gt;&gt;</code>, the word <code>&lt;&lt;&lt;CURSOR&gt;&gt;&gt;</code> will be removed on insertion and move the insertion point there instead.</td>
</tr>
</tbody>
</table>
<p>Here, you can set only the key bindings for CotEditors own commands. For more details about customizing the standard key bindings of Cocoa applications, see Apples documentation: <a href="https://support.apple.com/en-us/HT201236" rel="external">Apple - macOS keyboard shortcuts</a></p>
<section id="cf">
<h2>See also</h2>
<ul>

View File

@ -0,0 +1,84 @@
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="Snippets settings, snippet, File Drop"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<title>Change Snippets settings in CotEditor</title>
</head>
<body>
<a name="settings_snippets"></a>
<h1>Change Snippets settings in CotEditor</h1>
<p>In the CotEditor app <img class="appicon" src="../../Shared/gfx/icon_16x16@2x.png" height="16" alt=""/> on your Mac, use Snippets settings to define preset texts to insert with a command or by dropping a file onto the editor. To change these settings, choose CotEditor &gt; Settings, then click Snippets.</p>
<p class="openapp"><a href="x-help-action://openApp?bundleId=com.coteditor.CotEditor">Open CotEditor for me</a></p>
<table class="settings">
<caption>Command</caption>
<thead>
<tr><th>Option</th><th>Description</th></tr>
</thead>
<tbody>
<tr>
<th>Command definitions</th>
<td>Define the snippet insertion command. The commands defined here will be assigned to the Text &gt; Insert Snippet menu.<ul>
<li><strong>Name</strong>: The name of the command that will be displayed in the menu for this snippet.</li>
<li><strong>Key</strong>: A keyboard shortcut to perform this snippet insertion command. A shortcut is optional and can be left blank.</li>
</ul></td>
</tr>
<tr>
<th>Insertion formart</th>
<td>Set the text to be inserted with the command selected in the command definition list above.
<ul>
<li>When a snippet contains <code>&lt;&lt;&lt;CURSOR&gt;&gt;&gt;</code>, the word <code>&lt;&lt;&lt;CURSOR&gt;&gt;&gt;</code> will be removed on insertion and move the insertion point there instead.</li>
</ul></td>
</tr>
</tbody>
</table>
<table class="settings">
<caption>File Drop</caption>
<thead>
<tr><th>Option</th><th>Description</th></tr>
</thead>
<tbody>
<tr>
<th>File drop definitions</th>
<td>Define the conditions to perform the file drop. When files are dropped directly into the editor and the conditions defined here are fulfilled, the text that matches the files can be inserted at the drop location.<ul>
<li><strong>Extensions</strong>: The setting is performed only when a file with one of these extensions is dropped. If this field is empty (All), all files are eligible. No dot is required for filename extensions. You can set multiple extensions by separating them by a comma.</li>
<li><strong>Syntax Style</strong>: The setting is performed only when a file is dropped to a document having this syntax style. If this field is empty (All), all documents are eligible.</li>
<li><strong>Description</strong>: You can use this field to leave a comment about the row. This field doesnt affect the file drop behavior and can be left blank.</li>
</ul>
</td>
</tr>
<tr>
<th>Insertion formart</th>
<td>Set the text to be inserted for the condition that is selected in the file drop definition list above.
<ul>
<li>In an insertion format, you can use CotEditors variables. Variables are going to be replaced with the corresponding information of the dropped file. See <a href="about_filedrop.html">Write insertion format for File Drop</a> for each variables details.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<section id="cf">
<h2>See also</h2>
<ul>
<li><a href="howto_filedrop.html">Drop files to editor</a></li>
<li><a href="about_filedrop.html">Write insertion format for File Drop</a></li>
<li><a href="settings.html">Change settings</a></li>
</ul>
</section>
</body>
</html>

View File

@ -8,7 +8,6 @@
</head>
<body>
<a name="whats_new"></a>
<h1>Whats new in CotEditor 4.4?</h1>
@ -29,6 +28,7 @@
<ul>
<li><a href="releasenotes.html">Release notes</a></li>
<li><a href="whats_new_in_4.3.html">Whats new in CotEditor 4.3?</a></li>
<li><a href="whats_new_in_4.5.html">Whats new in CotEditor 4.5?</a></li>
</ul>
</section>

View File

@ -0,0 +1,30 @@
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 4.5?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
</head>
<body>
<a name="whats_new"></a>
<h1>Whats new in CotEditor 4.5?</h1>
<dl>
<dt>More convinient snippet feature</dt>
<dd></dd>
</dl>
<section id="cf">
<h2>See also</h2>
<ul>
<li><a href="releasenotes.html">Release notes</a></li>
<li><a href="whats_new_in_4.4.html">Whats new in CotEditor 4.4?</a></li>
</ul>
</section>
</body>
</html>

View File

@ -80,7 +80,7 @@
<li><a href="pgs/howto_customize_font.html">Change font type</a></li>
<li><a href="pgs/howto_customize_theme.html">Customize themes</a></li>
<li><a href="pgs/howto_customize_complete.html">Change the scope of completion words</a></li>
<li><a href="pgs/howto_customize_keybinding.html">Customize key bindings</a></li>
<li><a href="pgs/howto_customize_shortcut.html">Customize keyboard shortcuts</a></li>
<li><a href="pgs/howto_customize_toolbar.html">Customize toolbar</a></li>
</ul>
</details></li>
@ -103,7 +103,7 @@
<li><a href="pgs/faq_cannot_display.html">If characters arent displayed correctly</a></li>
<li><a href="pgs/faq_re_coloring.html">If syntax coloring seems not working properly</a></li>
<li><a href="pgs/faq_about_yen_backslash.html">If the Yen sign appears as a backslash</a></li>
<li><a href="pgs/faq_keybinding.html">If your key bindings dont work as you expect</a></li>
<li><a href="pgs/faq_shortcut.html">If your keyboard shortcut doesnt work as you expect</a></li>
<li><a href="pgs/faq_cannot_save.html">If you cant save a file</a></li>
<li><a href="pgs/faq_crash.html">If CotEditor quits unexpectedly</a></li>
<li><a href="pgs/faq_not_find_solution.html">If you cant find a solution</a></li>
@ -126,6 +126,7 @@
<li><details>
<summary>Whats New</summary>
<ul>
<li><a href="pgs/whats_new_in_4.5.html">Whats new in CotEditor 4.5?</a></li>
<li><a href="pgs/whats_new_in_4.4.html">Whats new in CotEditor 4.4?</a></li>
<li><a href="pgs/whats_new_in_4.3.html">Whats new in CotEditor 4.3?</a></li>
<li><a href="pgs/whats_new_in_4.2.html">Whats new in CotEditor 4.2?</a></li>

View File

@ -55,7 +55,7 @@
<section id="cf">
<h2>関連項目</h2>
<ul>
<li><a href="settings_filedrop.html">「ファイルドロップ」設定を変更する</a></li>
<li><a href="settings_snippets.html">「スニペット」設定を変更する</a></li>
</ul>
</section>

View File

@ -2,7 +2,7 @@
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="キーバインディング, キーバインド, キーボードショートカット"/>
<meta name="keywords" content="キーバインディング, キーバインド, ショートカット"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<title>CotEditorでキーボードショートカットを変更後、予期しない動作をする場合</title>
</head>
@ -13,15 +13,15 @@
<p>キーボードショートカットを変更したあとに予期しない動作をする場合、次のような原因が考えられます。</p>
<ul>
<li>設定したキーボードショートカットがすでにほかの機能に割り当てられている可能性があります。</li>
<li>メニュー項目のキーバインドとCotEditorのスニペットキーバインドに同一のキーバインドを設定した場合、CotEditorのスニペットキーバインドが優先されます。</li>
<li>設定したショートカットがすでにほかの機能に割り当てられている可能性があります。</li>
<li>特にエディタでは、文字キーと修飾キーを組み合わせて入力したときに、メニューコマンドの実行よりも特殊な文字の入力が優先されることがあります。</li>
</ul>
<section id="cf">
<h2>関連項目</h2>
<ul>
<li><a href="howto_customize_keybinding.html">キーバインドをカスタマイズする</a></li>
<li><a href="howto_customize_shortcut.html">キーボードショートカットをカスタマイズする</a></li>
<li><a href="settings_keybindings.html">「キーバインド」設定を変更する</a></li>
</ul>
</section>

View File

@ -1,30 +0,0 @@
<html lang="ja">
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="キーバインディング, キーバインド"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<title>CotEditorでキーバインドをカスタマイズする</title>
</head>
<body>
<h1>CotEditorでキーバインドをカスタマイズする</h1>
<p>CotEditorのキーボードショートカットを変更できます。また、テキスト編集時に任意の文字列を入力するキーバインドも追加/変更でき、例えば<kbd>Shift</kbd>+<kbd>Return</kbd>で「<code>&lt;br /&gt;</code>」を改行コードの入力できます。変更は「キーバインド」設定から行えます。</p>
<ul>
<li>既に使われているショートカット(スクリプトメニューのショートカットやバインディングリストに表示されないメニュー項目も含みます)と重複するものは、設定できません。</li>
<li>スクリプトメニューで定義されているショートカットはキーバインド登録時にはチェックされませんが自動的に上書きされます。</li>
</ul>
<section id="cf">
<h2>関連項目</h2>
<ul>
<li><a href="settings_keybinding.html">「キーバインド」設定を変更する</a></li>
</ul>
</section>
</body>
</html>

View File

@ -0,0 +1,58 @@
<html lang="ja">
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="キーバインディング, キーバインド, ショートカット"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<title>CotEditorでキーボードショートカットをカスタマイズする</title>
</head>
<body>
<h1>CotEditorでキーボードショートカットをカスタマイズする</h1>
<p>CotEditorのさまざまなコマンドに割り当てるキーボードショートカットをカスタマイズすることができます。</p>
<p>ショートカットの変更はコマンドの種類によって方法が異なります:</p>
<table>
<caption>ショートカットの設定方法</caption>
<thead>
<tr><th>種類</th><th>説明</th></tr>
</thead>
<tbody>
<tr>
<th>メニューコマンド</th>
<td>メニューに表示される一般的なコマンドのショートカットです。既存のメニューコマンドのキーボードショートカットの変更は<a href="settings_keybindings.html">「キーバインド」設定</a>で行います。
<ul>
<li>システムが提供している一部のメニューコマンドは、CotEditorからショートカットのカスタマイズができません。Cocoa標準のショートカットの変更についての詳細は、Appleの文書を参照してください: <a href="https://support.apple.com/ja-jp/guide/mac-help/mchlp2271/mac" rel="external">Apple - Macでアプリケーションのキーボードショートカットを作成する</a></li>
</ul></td>
</tr>
<tr>
<th>スニペット挿入</th>
<td>ユーザが設定したスニペット(テキスト断片)を挿入するコマンドのショートカットです。スニペットの挿入コマンドもメニューの中に表示されますが、これらのコマンドへのショートカットの設定は「キーバインド」設定ではなく<a href="settings_snippets.html">「スニペット」設定</a>で行います。</td>
</tr>
<tr>
<th>CotEditorスクリプト</th>
<td>ユーザが作成したCotEditorスクリプトを実行するショートカットです。スクリプトファイルの名前に特定の文字列を含めることでショートカットを設定できます。詳しくは「<a href="script_menu.html">スクリプトメニューをカスタマイズする</a>」を参照してください。</td>
</tr>
</tbody>
</table>
<p>既にほかのコマンドで使われているショートカットスクリプトのショートカットやリストに表示されないメニュー項目も含みますと重複するものは設定できません。ショートカットが重複した場合、その中のどれか1つのみが実行されます。</p>
<section id="cf">
<h2>関連項目</h2>
<ul>
<li><a href="settings_keybindings.html">「キーバインド」設定を変更する</a></li>
<li><a href="settings_snippets.html">「スニペット」設定を変更する</a></li>
<li><a href="script_menu.html">スクリプトメニューをカスタマイズする</a></li>
<li><a href="faq_shortcut.html">キーボードショートカットを変更後、予期しない動作をする場合</a></li>
</ul>
</section>
</body>
</html>

View File

@ -23,13 +23,13 @@
<h2>ファイルドロップを設定する</h2>
<p>設定は<a href="settings_filedrop.html">「ファイルドロップ」設定</a>で行います。</p>
<p>設定は<a href="settings_snippets.html">「スニペット」設定</a> &gt; ファイルドロップで行います。</p>
<section id="cf">
<h2>関連項目</h2>
<ul>
<li><a href="settings_filedrop.html">「ファイルドロップ」設定を変更する</a></li>
<li><a href="settings_snippets.html">「スニペット」設定を変更する</a></li>
<li><a href="about_filedrop.html">ファイルドロップの挿入フォーマットを作成する</a></li>
</ul>
</section>

View File

@ -50,7 +50,7 @@
<ul>
<li>ショートカットキー修飾キーでないキー、例での「e」や「Y」は通常小文字で記述します。大文字の場合は「Shiftキーも同時に押す」として認識されます。</li>
<li>ショートカットキーは修飾キーのあとに書かなければなりません。1文字だけ指定できます。ファイル名に使えないキー<kbd>F1</kbd><kbd>Delete</kbd>など)は割り当てられません。</li>
<li>指定したキーバインドがすでにほかの機能に割り当てられている場合、スクリプトのキーバインドは無視されます。</li>
<li>指定したキーボードショートカットがすでにほかの機能に割り当てられている場合、スクリプトのショートカットは無視されます。</li>
</ul>
<table>

View File

@ -35,11 +35,11 @@
<li><a href="settings_format.html">フォーマット</a>:
改行コードやエンコーディング、シンタックススタイルなど、書類のフォーマットを選択します。</li>
<li><a href="settings_filedrop.html">ファイルドロップ</a>:
ファイルドロップで挿入されるテキストを設定します</li>
<li><a href="settings_snippets.html">スニペット</a>:
任意のキーボードショートカットの入力やエディタへのファイルドロップで挿入できるテキストを設定します。</li>
<li><a href="settings_keybindings.html">キーバインド</a>:
メニューに割り当てられているキーボードショートカットを変更したり、任意のショートカットきーで入力できるテキストのスニペットを設定したりできます。</li>
メニューに割り当てられているキーボードショートカットを変更します。</li>
<li><a href="settings_print.html">プリント</a>:
プリント時の書類スタイルを選択します。</li>

View File

@ -1,63 +0,0 @@
<html lang="ja">
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="「ファイルドロップ」設定, ファイルドロップ設定, ファイルドロップ"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<title>CotEditorで「ファイルドロップ」設定を変更する</title>
</head>
<body>
<a name="settings_filedrop"></a>
<h1>CotEditorで「ファイルドロップ」設定を変更する</h1>
<p>MacのCotEidtorアプリケーション<img class="appicon" src="../../Shared/gfx/icon_16x16@2x.png" height="16" alt=""/>で、ファイルドロップで挿入されるテキストを設定するには、「ファイルドロップ」設定を使用します。これらの設定を変更するには、「CotEditor」「設定」と選択してから「ファイルドロップ」をクリックします。</p>
<p class="openapp"><a href="x-help-action://openApp?bundleId=com.coteditor.CotEditor">CotEditorを開く</a></p>
<table class="settings">
<thead>
<tr><th>オプション</th><th>説明</th></tr>
</thead>
<tbody>
<tr>
<th>ファイルドロップ定義</th>
<td>ファイルドロップを実行する条件を選択します。<ul>
<li><strong>拡張子</strong>: この拡張子を持つファイルがドロップされたときのみ本設定が実行されます。空欄(すべて)の場合はすベてのファイルが対象になります。入力する拡張子にドットは必要ありません。カンマ区切りにすることで複数の拡張子を指定することができます。</li>
<li><strong>シンタックススタイル</strong>: このシンタックススタイルを持つ書類にファイルがドロップされたときのみ本設定が実行されます。空欄(すべて)の場合はすベての書類が対象になります。</li>
<li><strong>説明</strong>: 登録する設定にメモがある場合はこの欄を使用できます。この項目は動作に影響せず、空でも構いません。</li>
</ul>
</td>
</tr>
<tr>
<th>挿入フォーマット</th>
<td>上のファイルドロップ定義のリストで現在選択されている行の条件について、テキストに挿入する文字列を設定します。</td>
</tr>
<tr>
<th>変数を挿入</th>
<td>変数をフォーマットの挿入ポイントに追加します。
<ul>
<li>「変数」は、ドロップしたファイル固有の情報に置換される特別なキーワードです。個々の変数のはたらきについては「<a href="about_filedrop.html">ファイルドロップの挿入フォーマットを作成する</a>」を参照してください。</li>
</ul>
</td>
</tr>
</tbody>
</table>
<section id="cf">
<h2>関連項目</h2>
<ul>
<li><a href="howto_filedrop.html">ファイルをエディタにドロップする</a></li>
<li><a href="about_filedrop.html">ファイルドロップの挿入フォーマットを作成する</a></li>
<li><a href="settings.html">設定を変更する</a></li>
</ul>
</section>
</body>
</html>

View File

@ -2,7 +2,7 @@
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="「キーバインド」設定, キーバインド設定, キーバインド, キーバインディング"/>
<meta name="keywords" content="「キーバインド」設定, ショートカット設定, キーバインド, キーバインディング, ショートカット"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<title>CotEditorで「キーバインド」設定を変更する</title>
</head>
@ -12,51 +12,27 @@
<h1>CotEditorで「キーバインド」設定を変更する</h1>
<p>MacのCotEidtorアプリケーション<img class="appicon" src="../../Shared/gfx/icon_16x16@2x.png" height="16" alt=""/>で、メニューに割り当てられているキーボードショートカットを変更、または任意のショートカットきーで入力できるテキストのスニペットを設定するには、「キーバインド」設定を使用します。これらの設定を変更するには、「CotEditor」「設定」と選択してから「キーバインド」をクリックします。</p>
<p>MacのCotEidtorアプリケーション<img class="appicon" src="../../Shared/gfx/icon_16x16@2x.png" height="16" alt=""/>で、メニューに割り当てられているキーボードショートカットを変更するには、「キーバインド」設定を使用します。これらの設定を変更するには、「CotEditor」「設定」と選択してから「ショートカット」をクリックします。</p>
<p class="openapp"><a href="x-help-action://openApp?bundleId=com.coteditor.CotEditor">CotEditorを開く</a></p>
<table class="settings">
<caption>メニュー項目</caption>
<thead>
<tr><th>オプション</th><th>説明</th></tr>
</thead>
<tbody>
<tr>
<th>ショートカットリスト</th>
<td>メニュー項目にあるコマンドに割り当てるお好みのキーボードショートカットを選択します。</td>
<th>キー</th>
<td>メニュー項目にあるコマンドに割り当てるお好みのキーボードショートカットを選択します。詳しくは「<a href="howto_customize_shortcut.html">キーボードショートカットをカスタマイズする</a>」を参照してください。</td>
</tr>
</tbody>
</table>
<table class="settings">
<caption>スニペット</caption>
<thead>
<tr><th>オプション</th><th>説明</th></tr>
</thead>
<tbody>
<tr>
<th>ショートカットリスト</th>
<td>CotEditor固有のテキスト挿入コマンドに割り当てるお好みのキーボードショートカットを選択します。</td>
</tr>
<tr>
<th>挿入フォーマット</th>
<td>上のリストで選択したショートカットで挿入するテキストスニペットを設定します。スニペットに<code>&lt;&lt;&lt;CURSOR&gt;&gt;&gt;</code>という変数が含まれる場合は、スニペット挿入時に文字列<code>&lt;&lt;&lt;CURSOR&gt;&gt;&gt;</code>は取り除かれ、代わりにその位置に挿入ポイントが移動します。</td>
</tr>
</tbody>
</table>
<p>「スニペットキーバインド」が設定できるのはCotEditor固有のテキスト挿入コマンドに限られます。Cocoa標準のキーバインドの変更など詳細は、Appleの文書を参照してください: <a href="https://support.apple.com/ja-jp/HT201236" rel="external">Apple - Macのキーボードショートカット</a></p>
<section id="cf">
<h2>関連項目</h2>
<ul>

View File

@ -0,0 +1,86 @@
<html lang="ja">
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="「スニペット」設定, スニペット設定, スニペット, ファイルドロップ"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<title>CotEditorで「スニペット」設定を変更する</title>
</head>
<body>
<a name="settings_snippets"></a>
<h1>CotEditorで「スニペット」設定を変更する</h1>
<p>MacのCotEidtorアプリケーション<img class="appicon" src="../../Shared/gfx/icon_16x16@2x.png" height="16" alt=""/>で、コマンドやファイルドロップで挿入されるテキストを設定するには、「スニペット」設定を使用します。これらの設定を変更するには、「CotEditor」「設定」と選択してから「スニペット」をクリックします。</p>
<p class="openapp"><a href="x-help-action://openApp?bundleId=com.coteditor.CotEditor">CotEditorを開く</a></p>
<table class="settings">
<caption>コマンド</caption>
<thead>
<tr><th>オプション</th><th>説明</th></tr>
</thead>
<tbody>
<tr>
<th>コマンド定義</th>
<td>スニペット挿入コマンドを定義します。ここで定義したコマンドは、「テキスト」&gt;「スニペットを挿入」メニューに登録されます。<ul>
<li><strong>名前</strong>: この名前がスニペットメニューでコマンド名として表示されます。</li>
<li><strong>キー</strong>: このスニペット挿入コマンドに割り当てられるキーボードショートカットを設定します。ショートカットは設定しなくても構いません。</li>
</ul></td>
</tr>
<tr>
<th>挿入フォーマット</th>
<td>上のコマンド定義リストで選択したコマンドで挿入するテキストを設定します。
<ul>
<li>スニペットに<code>&lt;&lt;&lt;CURSOR&gt;&gt;&gt;</code>という変数が含まれる場合は、スニペット挿入時に文字列<code>&lt;&lt;&lt;CURSOR&gt;&gt;&gt;</code>は取り除かれ、代わりにその位置に挿入ポイントが移動します。</li>
</ul></td>
</tr>
</tbody>
</table>
<table class="settings">
<caption>ファイルドロップ</caption>
<thead>
<tr><th>オプション</th><th>説明</th></tr>
</thead>
<tbody>
<tr>
<th>ファイルドロップ定義</th>
<td>ファイルドロップを実行する条件を定義します。ファイルをエディタに直接ドロップしたときにここで定義した条件を満たしていると、ドロップ箇所にファイルに合わせた任意のテキストを挿入することができます。<ul>
<li><strong>拡張子</strong>: この拡張子を持つファイルがドロップされたときのみ本設定が実行されます。空欄(すべて)の場合はすベてのファイルが対象になります。入力する拡張子にドットは必要ありません。カンマ区切りにすることで複数の拡張子を指定することができます。</li>
<li><strong>シンタックススタイル</strong>: このシンタックススタイルを持つ書類にファイルがドロップされたときのみ本設定が実行されます。空欄(すべて)の場合はすベての書類が対象になります。</li>
<li><strong>説明</strong>: 登録する設定にメモがある場合はこの欄を使用できます。この項目は動作に影響せず、空でも構いません。</li>
</ul>
</td>
</tr>
<tr>
<th>挿入フォーマット</th>
<td>上のファイルドロップ定義のリストで選択した条件で挿入するテキストを設定します。
<ul>
<li>「変数」は、ドロップしたファイル固有の情報に置換される特別なキーワードです。個々の変数のはたらきについては「<a href="about_filedrop.html">ファイルドロップの挿入フォーマットを作成する</a>」を参照してください。</li>
</ul>
</td>
</tr>
</tbody>
</table>
<section id="cf">
<h2>関連項目</h2>
<ul>
<li><a href="howto_filedrop.html">ファイルをエディタにドロップする</a></li>
<li><a href="about_filedrop.html">ファイルドロップの挿入フォーマットを作成する</a></li>
<li><a href="settings.html">設定を変更する</a></li>
</ul>
</section>
</body>
</html>

View File

@ -8,7 +8,6 @@
</head>
<body>
<a name="whats_new"></a>
<h1>CotEditor 4.4の新機能</h1>
@ -29,6 +28,7 @@
<ul>
<li><a href="releasenotes.html">リリースノート</a></li>
<li><a href="whats_new_in_4.3.html">CotEditor 4.3の新機能</a></li>
<li><a href="whats_new_in_4.5.html">CotEditor 4.5の新機能</a></li>
</ul>
</section>

View File

@ -0,0 +1,30 @@
<html lang="ja">
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="what's new, リリース, 新機能"/>
<title>CotEditor 4.5の新機能</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
</head>
<body>
<a name="whats_new"></a>
<h1>CotEditor 4.5の新機能</h1>
<dl>
<dt>より便利なスニペット機能</dt>
<dd></dd>
</dl>
<section id="cf">
<h2>関連項目</h2>
<ul>
<li><a href="releasenotes.html">リリースノート</a></li>
<li><a href="whats_new_in_4.4.html">CotEditor 4.4の新機能</a></li>
</ul>
</section>
</body>
</html>

View File

@ -79,7 +79,7 @@
<li><a href="pgs/howto_customize_font.html">フォントをカスタマイズする</a></li>
<li><a href="pgs/howto_customize_theme.html">テーマを設定する</a></li>
<li><a href="pgs/howto_customize_complete.html">入力補完候補をカスタマイズする</a></li>
<li><a href="pgs/howto_customize_keybinding.html">キーバインドをカスタマイズする</a></li>
<li><a href="pgs/howto_customize_shortcut.html">キーボードショートカットをカスタマイズする</a></li>
<li><a href="pgs/howto_customize_toolbar.html">ツールバーをカスタマイズする</a></li>
</ul>
</details></li>
@ -102,7 +102,7 @@
<li><a href="pgs/faq_cannot_display.html">文字化けする場合</a></li>
<li><a href="pgs/faq_re_coloring.html">カラーリングがおかしくなった場合</a></li>
<li><a href="pgs/faq_about_yen_backslash.html">円マークがバックスラッシュに変わる場合</a></li>
<li><a href="pgs/faq_keybinding.html">キーボードショートカットを変更後、予期しない動作をする場合</a></li>
<li><a href="pgs/faq_shortcut.html">キーボードショートカットを変更後、予期しない動作をする場合</a></li>
<li><a href="pgs/faq_cannot_save.html">ファイルを保存できない場合</a></li>
<li><a href="pgs/faq_crash.html">CotEditorが予期せず終了する場合</a></li>
<li><a href="pgs/faq_not_find_solution.html">解決方法が見つからない場合</a></li>
@ -125,6 +125,7 @@
<li><details>
<summary>新機能</summary>
<ul>
<li><a href="pgs/whats_new_in_4.5.html">CotEditor 4.5の新機能</a></li>
<li><a href="pgs/whats_new_in_4.4.html">CotEditor 4.4の新機能</a></li>
<li><a href="pgs/whats_new_in_4.3.html">CotEditor 4.3の新機能</a></li>
<li><a href="pgs/whats_new_in_4.2.html">CotEditor 4.2の新機能</a></li>