Skip to content

Commit

Permalink
Document new support for horizontal mouse scrolling added by Scintilla.
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnlaan committed Jun 14, 2024
1 parent 8be06f4 commit c426177
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
14 changes: 9 additions & 5 deletions ISHelp/isetup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<contentstopic title="Uninstaller Command Line Parameters" topic="uninstcmdline" />
<contentstopic title="Setup Exit Codes" topic="setupexitcodes" />
<contentstopic title="Uninstaller Exit Codes" topic="uninstexitcodes" />
<contentstopic title="Compiler IDE Keyboard Commands" topic="compformshortcuts" />
<contentstopic title="Compiler IDE Keyboard And Mouse Commands" topic="compformshortcuts" />
<contentstopic title="Miscellaneous Notes" topic="technotes" />
<contentstopic title="Example Scripts" topic="examples" />
<contentstopic title="Frequently Asked Questions" topic="faq" />
Expand Down Expand Up @@ -254,7 +254,7 @@ Source: "MYPROG.EXE"; DestDir: "{app}"
<link topic="uninstalldeletesection">[UninstallDelete] section</link><br/>
<link topic="runsection">[UninstallRun] section</link><br/>
<link topic="scriptintro">Pascal Scripting: Introduction</link>
<link topic="compformshortcuts">Compiler IDE Keyboard Commands</link>
<link topic="compformshortcuts">Compiler IDE Keyboard And Mouse Commands</link>
</p>

</body>
Expand Down Expand Up @@ -3108,12 +3108,13 @@ Filename: "{win}\MYPROG.INI"; Section: "InstallSettings"; Key: "InstallPath"; St



<topic name="compformshortcuts" title="Compiler IDE Keyboard Commands">
<keyword value="Compiler IDE Keyboard Commands" />
<topic name="compformshortcuts" title="Compiler IDE Keyboard And Mouse Commands">
<keyword value="Compiler IDE Keyboard And Mouse Commands" />
<keyword value="Keyboard commands" />
<keyword value="Mouse commands" />
<body>

<p>Besides the keyboard commands listed in the menus, the Compiler IDE supports the following additional keyboard commands:</p>
<p>Besides the keyboard commands listed in the menus, the Compiler IDE supports the following additional keyboard and mouse commands:</p>

<table>
<tr>
Expand Down Expand Up @@ -3152,6 +3153,9 @@ Filename: "{win}\MYPROG.INI"; Section: "InstallSettings"; Key: "InstallPath"; St
<tr>
<td>Scroll down.</td><td>Ctrl+Down</td>
</tr>
<tr>
<td>Scroll horizontally.</td><td>Shift+MouseWheel</td>
</tr>
<tr>
<td>Cut line.</td><td>Ctrl+L</td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion Projects/Src/CompForm.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ object CompileForm: TCompileForm
Caption = '-'
end
object HShortcutsDoc: TMenuItem
Caption = '&Keyboard Commands'
Caption = '&Keyboard And Mouse Commands'
OnClick = HShortcutsDocClick
end
object N14: TMenuItem
Expand Down
1 change: 1 addition & 0 deletions whatsnew.htm
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
<ul>
<li>The editor's gutter now shows change history to keep track of saved and unsaved modifications.</li>
<li>The editor's font now defaults to Consolas if available, consistent with most other editors.</li>
<li>The editor can now be scrolled horizontally instead of vertically by holding the Shift key while rotating the mouse wheel. Horizontal scroll wheels are now also supported.</li>
<li>Added shortcuts to move selected lines up or down (Alt+Up and Alt+Down).</li>
<li>Added a right-click popup menu to the editor's gutter column for breakpoints.</li>
<li>Minor tweaks and documentation improvements.</li>
Expand Down

0 comments on commit c426177

Please sign in to comment.