1 | # GTK - The GIMP Toolkit |
---|
2 | # Copyright (C) 2002 Owen Taylor |
---|
3 | # |
---|
4 | # This library is free software; you can redistribute it and/or |
---|
5 | # modify it under the terms of the GNU Lesser General Public |
---|
6 | # License as published by the Free Software Foundation; either |
---|
7 | # version 2 of the License, or (at your option) any later version. |
---|
8 | # |
---|
9 | # This library is distributed in the hope that it will be useful, |
---|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
12 | # Lesser General Public License for more details. |
---|
13 | # |
---|
14 | # You should have received a copy of the GNU Lesser General Public |
---|
15 | # License along with this library; if not, write to the |
---|
16 | # Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
---|
17 | # Boston, MA 02111-1307, USA. |
---|
18 | |
---|
19 | |
---|
20 | # Modified by the GTK+ Team and others 1997-2000. See the AUTHORS |
---|
21 | # file for a list of people on the GTK+ Team. See the ChangeLog |
---|
22 | # files for a list of changes. These files are distributed with |
---|
23 | # GTK+ at ftp://ftp.gtk.org/pub/gtk/. |
---|
24 | |
---|
25 | |
---|
26 | # |
---|
27 | # A keybinding set implementing emacs-like keybindings |
---|
28 | # |
---|
29 | |
---|
30 | # |
---|
31 | # Bindings for GtkTextView and GtkEntry |
---|
32 | # |
---|
33 | binding "gtk-emacs-text-entry" |
---|
34 | { |
---|
35 | bind "<ctrl>b" { "move-cursor" (logical-positions, -1, 0) } |
---|
36 | bind "<shift><ctrl>b" { "move-cursor" (logical-positions, -1, 1) } |
---|
37 | bind "<ctrl>f" { "move-cursor" (logical-positions, 1, 0) } |
---|
38 | bind "<shift><ctrl>f" { "move-cursor" (logical-positions, 1, 1) } |
---|
39 | |
---|
40 | bind "<alt>b" { "move-cursor" (words, -1, 0) } |
---|
41 | bind "<shift><alt>b" { "move-cursor" (words, -1, 1) } |
---|
42 | bind "<alt>f" { "move-cursor" (words, 1, 0) } |
---|
43 | bind "<shift><alt>f" { "move-cursor" (words, 1, 1) } |
---|
44 | |
---|
45 | bind "<ctrl>a" { "move-cursor" (paragraph-ends, -1, 0) } |
---|
46 | bind "<shift><ctrl>a" { "move-cursor" (paragraph-ends, -1, 1) } |
---|
47 | bind "<ctrl>e" { "move-cursor" (paragraph-ends, 1, 0) } |
---|
48 | bind "<shift><ctrl>e" { "move-cursor" (paragraph-ends, 1, 1) } |
---|
49 | |
---|
50 | bind "<ctrl>w" { "cut-clipboard" () } |
---|
51 | bind "<ctrl>y" { "paste-clipboard" () } |
---|
52 | |
---|
53 | bind "<ctrl>d" { "delete-from-cursor" (chars, 1) } |
---|
54 | bind "<alt>d" { "delete-from-cursor" (word-ends, 1) } |
---|
55 | bind "<ctrl>k" { "delete-from-cursor" (paragraph-ends, 1) } |
---|
56 | bind "<alt>backslash" { "delete-from-cursor" (whitespace, 1) } |
---|
57 | |
---|
58 | bind "<alt>space" { "delete-from-cursor" (whitespace, 1) |
---|
59 | "insert-at-cursor" (" ") } |
---|
60 | bind "<alt>KP_Space" { "delete-from-cursor" (whitespace, 1) |
---|
61 | "insert-at-cursor" (" ") } |
---|
62 | |
---|
63 | # |
---|
64 | # Some non-Emacs keybindings people are attached to |
---|
65 | # |
---|
66 | bind "<ctrl>u" { |
---|
67 | "move-cursor" (paragraph-ends, -1, 0) |
---|
68 | "delete-from-cursor" (paragraph-ends, 1) |
---|
69 | } |
---|
70 | bind "<ctrl>h" { "delete-from-cursor" (chars, -1) } |
---|
71 | bind "<ctrl>w" { "delete-from-cursor" (word-ends, -1) } |
---|
72 | } |
---|
73 | |
---|
74 | # |
---|
75 | # Bindings for GtkTextView |
---|
76 | # |
---|
77 | binding "gtk-emacs-text-view" |
---|
78 | { |
---|
79 | bind "<ctrl>p" { "move-cursor" (display-lines, -1, 0) } |
---|
80 | bind "<shift><ctrl>p" { "move-cursor" (display-lines, -1, 1) } |
---|
81 | bind "<ctrl>n" { "move-cursor" (display-lines, 1, 0) } |
---|
82 | bind "<shift><ctrl>n" { "move-cursor" (display-lines, 1, 1) } |
---|
83 | |
---|
84 | bind "<ctrl>space" { "set-anchor" () } |
---|
85 | bind "<ctrl>KP_Space" { "set-anchor" () } |
---|
86 | } |
---|
87 | |
---|
88 | # |
---|
89 | # Bindings for GtkTreeView |
---|
90 | # |
---|
91 | binding "gtk-emacs-tree-view" |
---|
92 | { |
---|
93 | bind "<ctrl>s" { "start-interactive-search" () } |
---|
94 | bind "<ctrl>f" { "move-cursor" (logical-positions, 1) } |
---|
95 | bind "<ctrl>b" { "move-cursor" (logical-positions, -1) } |
---|
96 | } |
---|
97 | |
---|
98 | # |
---|
99 | # Bindings for menus |
---|
100 | # |
---|
101 | binding "gtk-emacs-menu" |
---|
102 | { |
---|
103 | bind "<ctrl>n" { "move-current" (next) } |
---|
104 | bind "<ctrl>p" { "move-current" (prev) } |
---|
105 | bind "<ctrl>f" { "move-current" (child) } |
---|
106 | bind "<ctrl>b" { "move-current" (parent) } |
---|
107 | } |
---|
108 | |
---|
109 | class "GtkEntry" binding "gtk-emacs-text-entry" |
---|
110 | class "GtkTextView" binding "gtk-emacs-text-entry" |
---|
111 | class "GtkTextView" binding "gtk-emacs-text-view" |
---|
112 | class "GtkTreeView" binding "gtk-emacs-tree-view" |
---|
113 | class "GtkMenuShell" binding "gtk-emacs-menu" |
---|