blob: 731881104818d2bbe0d4db944d197c1d4b85aa19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
<sect1 id="Default_Translation_Bindings">
<title>Default Translation Bindings</title>
<para>
<!-- .LP -->
<!-- .XS -->
<!-- Default Translation Bindings -->
<!-- .XE -->
<!-- .IN "Text widget" "default translations" -->
The following translations are defaults built into every Text widget.
They can be overridden, or replaced by specifying a new value for the
Text widget's <function>translations</function> resource.
</para>
<para>
<!-- .LP -->
<!-- .sp -->
<literallayout class="monospaced">
<!-- .TA .5i 2.5i -->
<!-- .ta .5i 2.5i -->
Ctrl<Key>A: beginning-of-line() \\n\\
Ctrl<Key>B: backward-character() \\n\\
Ctrl<Key>D: delete-next-character() \\n\\
Ctrl<Key>E: end-of-line() \\n\\
Ctrl<Key>F: forward-character() \\n\\
Ctrl<Key>G: multiply(Reset) \\n\\
Ctrl<Key>H: delete-previous-character() \\n\\
Ctrl<Key>J: newline-and-indent() \\n\\
Ctrl<Key>K: kill-to-end-of-line() \\n\\
Ctrl<Key>L: redraw-display() \\n\\
Ctrl<Key>M: newline() \\n\\
Ctrl<Key>N: next-line() \\n\\
Ctrl<Key>O: newline-and-backup() \\n\\
Ctrl<Key>P: previous-line() \\n\\
Ctrl<Key>R: search(backward) \\n\\
Ctrl<Key>S: search(forward) \\n\\
Ctrl<Key>T: transpose-characters() \\n\\
Ctrl<Key>U: multiply(4) \\n\\
Ctrl<Key>V: next-page() \\n\\
Ctrl<Key>W: kill-selection() \\n\\
Ctrl<Key>Y: insert-selection(CUT_BUFFER1) \\n\\
Ctrl<Key>Z: scroll-one-line-up() \\n\\
Ctrl<Key>\\: reconnect-im() \\n\\
Meta<Key>B: backward-word() \\n\\
Meta<Key>F: forward-word() \\n\\
Meta<Key>I: insert-file() \\n\\
Meta<Key>K: kill-to-end-of-paragraph() \\n\\
Meta<Key>Q: form-paragraph() \\n\\
Meta<Key>V: previous-page() \\n\\
Meta<Key>Y: insert-selection(PRIMARY, CUT_BUFFER0) \\n\\
Meta<Key>Z: scroll-one-line-down() \\n\\
:Meta<Key>d: delete-next-word() \\n\\
:Meta<Key>D: kill-word() \\n\\
:Meta<Key>h: delete-previous-word() \\n\\
:Meta<Key>H: backward-kill-word() \\n\\
:Meta<Key>\\<: beginning-of-file() \\n\\
:Meta<Key>\\>: end-of-file() \\n\\
:Meta<Key>]: forward-paragraph() \\n\\
:Meta<Key>[: backward-paragraph() \\n\\
~Shift Meta<Key>Delete: delete-previous-word() \\n\\
\ Shift Meta<Key>Delete: backward-kill-word() \\n\\
~Shift Meta<Key>Backspace: delete-previous-word() \\n\\
\ Shift Meta<Key>Backspace: backward-kill-word() \\n\\
<Key>Right: forward-character() \\n\\
<Key>Left: backward-character() \\n\\
<Key>Down: next-line() \\n\\
<Key>Up: previous-line() \\n\\
<Key>Delete: delete-previous-character() \\n\\
<Key>BackSpace: delete-previous-character() \\n\\
<Key>Linefeed: newline-and-indent() \\n\\
<Key>Return: newline() \\n\\
<Key>: insert-char() \\n\\
<Key>Kanji: reconnect-im() \\n\\
<FocusIn>: focus-in() \\n\\
<FocusOut>: focus-out() \\n\\
<Btn1Down>: select-start() \\n\\
<Btn1Motion>: extend-adjust() \\n\\
<Btn1Up>: extend-end(PRIMARY, CUT_BUFFER0) \\n\\
<Btn2Down>: insert-selection(PRIMARY, CUT_BUFFER0) \\n\\
<Btn3Down>: extend-start() \\n\\
<Btn3Motion>: extend-adjust() \\n\\
<Btn3Up>: extend-end(PRIMARY, CUT_BUFFER0) \\n
</literallayout>
</para>
</sect1>
|