~ubuntu-branches/ubuntu/raring/geany/raring-proposed

« back to all changes in this revision

Viewing changes to doc/scikeybinding.docbook

  • Committer: Bazaar Package Importer
  • Author(s): Damián Viano
  • Date: 2008-05-02 11:37:45 UTC
  • mfrom: (1.2.1 upstream) (9 hardy)
  • mto: (3.2.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: james.westby@ubuntu.com-20080502113745-xzp4g6dmovrpoj17
Tags: 0.14-1
New upstream release (Closes: #478126)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
  <appendixinfo>
2
 
    <title>Scintilla keyboard commands</title>
3
 
    <pubdate>20 June 2006</pubdate>
4
 
    <copyright>
5
 
      <year>1998, 2006</year>
6
 
      <holder>Neil Hodgson &lt;neilh@scintilla.org&gt;</holder>
7
 
    </copyright>
8
 
                <legalnotice>
9
 
                        <para>
10
 
                                This appendix is distributed under the terms of the License for
11
 
                                Scintilla and SciTE.
12
 
                                A copy of this license can be found in the file scintilla/License.txt
13
 
                                included with the source code of this
14
 
                                program and in the
15
 
                                appendix of this document.
16
 
                                See <xref linkend="scintilla-license"/>.
17
 
                        </para>
18
 
                </legalnotice>
19
 
  </appendixinfo>
20
 
  <title>Scintilla keyboard commands</title>
21
 
  <sect1>
22
 
    <title>
23
 
       Keyboard commands
24
 
    </title>
25
 
    <para>
26
 
       <!-- Scintilla release 1.70, 20 June 2006 -->
27
 
       Keyboard commands for Scintilla mostly follow common Windows and GTK+ conventions.
28
 
       All move keys (arrows, page up/down, home and end)
29
 
       allows to extend or reduce the stream selection when holding the Shift key,
30
 
       and the rectangular selection when holding the Shift and Alt keys.
31
 
       Some keys may not be available with some national keyboards or because
32
 
       they are taken by the system such as by a window manager on GTK+.
33
 
       Keyboard equivalents of menu commands are listed in the menus.
34
 
       Some less common commands with no menu equivalent are:
35
 
    </para>
36
 
    <para>
37
 
        <table frame="all">
38
 
                <title>Scintilla keyboard commands</title>
39
 
                <tgroup cols="2">
40
 
                        <?dbhtml cellpadding="4" ?>
41
 
                        <?dbhtml cellspacing="0" ?>
42
 
                        <colspec colnum="1" colname="col1"/>
43
 
                        <colspec colnum="2" colname="col2"/>
44
 
                        <spanspec spanname="hspan" namest="col1" nameend="col2" align="center"/>
45
 
                        <thead>
46
 
                                <row>
47
 
                                        <entry>Action</entry>
48
 
                                        <entry>Shortcut key</entry>
49
 
                                </row>
50
 
                        </thead>
51
 
                        <tbody>
52
 
                                <row>
53
 
                                        <entry>Magnify text size.</entry><entry>Ctrl+Keypad+</entry>
54
 
                                </row>
55
 
                                <row>
56
 
                                        <entry>Reduce text size.</entry><entry>Ctrl+Keypad-</entry>
57
 
                                </row>
58
 
                                <row>
59
 
                                        <entry>Restore text size to normal.</entry><entry>Ctrl+Keypad/</entry>
60
 
                                </row>
61
 
                                <!--
62
 
                                <row>
63
 
                                        <entry>Cycle through recent files.</entry><entry>Ctrl+Tab</entry>
64
 
                                </row>
65
 
                                -->
66
 
                                <row>
67
 
                                        <entry>Indent block.</entry><entry>Tab</entry>
68
 
                                </row>
69
 
                                <row>
70
 
                                        <entry>Dedent block.</entry><entry>Shift+Tab</entry>
71
 
                                </row>
72
 
                                <row>
73
 
                                        <entry>Delete to start of word.</entry><entry>Ctrl+BackSpace</entry>
74
 
                                </row>
75
 
                                <row>
76
 
                                        <entry>Delete to end of word.</entry><entry>Ctrl+Delete</entry>
77
 
                                </row>
78
 
                                <row>
79
 
                                        <entry>Delete to start of line.</entry><entry>Ctrl+Shift+BackSpace</entry>
80
 
                                </row>
81
 
                                <row>
82
 
                                        <entry>Delete to end of line.</entry><entry>Ctrl+Shift+Delete</entry>
83
 
                                </row>
84
 
                                <row>
85
 
                                        <entry>Go to start of document.</entry><entry>Ctrl+Home</entry>
86
 
                                </row>
87
 
                                <row>
88
 
                                        <entry>Extend selection to start of document.</entry><entry>Ctrl+Shift+Home</entry>
89
 
                                </row>
90
 
                                <row>
91
 
                                        <entry>Go to start of display line.</entry><entry>Alt+Home</entry>
92
 
                                </row>
93
 
                                <row>
94
 
                                        <entry>Extend selection to start of display line.</entry><entry>Alt+Shift+Home</entry>
95
 
                                </row>
96
 
                                <row>
97
 
                                        <entry>Go to end of document.</entry><entry>Ctrl+End</entry>
98
 
                                </row>
99
 
                                <row>
100
 
                                        <entry>Extend selection to end of document.</entry><entry>Ctrl+Shift+End</entry>
101
 
                                </row>
102
 
                                <row>
103
 
                                        <entry>Go to end of display line.</entry><entry>Alt+End</entry>
104
 
                                </row>
105
 
                                <row>
106
 
                                        <entry>Extend selection to end of display line.</entry><entry>Alt+Shift+End</entry>
107
 
                                </row>
108
 
                                <!--
109
 
                                <row>
110
 
                                        <entry>Expand or contract a fold point.</entry><entry>Ctrl+Keypad*</entry>
111
 
                                </row>
112
 
                                <row>
113
 
                                        <entry>Create or delete a bookmark.</entry><entry>Ctrl+F2</entry>
114
 
                                </row>
115
 
                                <row>
116
 
                                        <entry>Go to next bookmark.</entry><entry>F2</entry>
117
 
                                </row>
118
 
                                <row>
119
 
                                        <entry>Select to next bookmark.</entry><entry>Alt+F2</entry>
120
 
                                </row>
121
 
                                <row>
122
 
                                        <entry>Find selection.</entry><entry>Ctrl+F3</entry>
123
 
                                </row>
124
 
                                <row>
125
 
                                        <entry>Find selection backwards.</entry><entry>Ctrl+Shift+F3</entry>
126
 
                                </row>
127
 
                                -->
128
 
                                <row>
129
 
                                        <entry>Scroll up.</entry><entry>Ctrl+Up</entry>
130
 
                                </row>
131
 
                                <row>
132
 
                                        <entry>Scroll down.</entry><entry>Ctrl+Down</entry>
133
 
                                </row>
134
 
                                <row>
135
 
                                        <entry>Line cut.</entry><entry>Ctrl+L</entry>
136
 
                                </row>
137
 
                                <row>
138
 
                                        <entry>Line copy.</entry><entry>Ctrl+Shift+T</entry>
139
 
                                </row>
140
 
                                <row>
141
 
                                        <entry>Line delete.</entry><entry>Ctrl+Shift+L</entry>
142
 
                                </row>
143
 
                                <row>
144
 
                                        <entry>Line transpose with previous.</entry><entry>Ctrl+T</entry>
145
 
                                </row>
146
 
                                <row>
147
 
                                        <entry>Selection duplicate.</entry><entry>Ctrl+D</entry>
148
 
                                </row>
149
 
                                <!--
150
 
                                <row>
151
 
                                        <entry>Find matching preprocessor conditional, skipping nested ones.</entry><entry>Ctrl+K</entry>
152
 
                                </row>
153
 
                                <row>
154
 
                                        <entry>Select to matching preprocessor conditional.</entry><entry>Ctrl+Shift+K</entry>
155
 
                                </row>
156
 
                                <row>
157
 
                                        <entry>Find matching preprocessor conditional backwards, skipping nested ones.</entry><entry>Ctrl+J</entry>
158
 
                                </row>
159
 
                                <row>
160
 
                                        <entry>Select to matching preprocessor conditional backwards.</entry><entry>Ctrl+Shift+J</entry>
161
 
                                </row>
162
 
                                -->
163
 
                                <row>
164
 
                                        <entry>Previous paragraph. Shift extends selection.</entry><entry>Ctrl+[</entry>
165
 
                                </row>
166
 
                                <row>
167
 
                                        <entry>Next paragraph. Shift extends selection.</entry><entry>Ctrl+]</entry>
168
 
                                </row>
169
 
                                <row>
170
 
                                        <entry>Previous word. Shift extends selection.</entry><entry>Ctrl+Left</entry>
171
 
                                </row>
172
 
                                <row>
173
 
                                        <entry>Next word. Shift extends selection.</entry><entry>Ctrl+Right</entry>
174
 
                                </row>
175
 
                                <row>
176
 
                                        <entry>Previous word part. Shift extends selection</entry><entry>Ctrl+/</entry>
177
 
                                </row>
178
 
                                <row>
179
 
                                        <entry>Next word part. Shift extends selection.</entry><entry>Ctrl+\</entry>
180
 
                                </row>
181
 
                        </tbody>
182
 
                </tgroup>
183
 
    </table>
184
 
    </para>
185
 
  </sect1>