-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gtkrc.mine
More file actions
27 lines (21 loc) · 797 Bytes
/
.gtkrc.mine
File metadata and controls
27 lines (21 loc) · 797 Bytes
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
include "/usr/share/themes/ClearlooksClassic/gtk-2.0/gtkrc"
gtk-toolbar-style = GTK_TOOLBAR_ICONS
gtk-key-theme-name = "Emacs"
# un-comment this to be able to change keybindings from the app.
# gtk-can-change-accels = 1
# The following code replaces: 'gtk-key-theme-name = "Emacs"' which doesn't work
binding "gtk-emacs-text-entry" {
bind "<ctrl>k" { "delete-from-cursor" (paragraph-ends, 1) }
bind "<ctrl>u" {
"move-cursor" (paragraph-ends, -1, 0)
"delete-from-cursor" (paragraph-ends, 1)
}
bind "<ctrl>h" { "delete-from-cursor" (chars, -1) }
bind "<ctrl>w" { "delete-from-cursor" (word-ends, -1) }
}
binding "pidgin-bindings"
{
bind "<ctrl>M" { "message_send" () }
}
widget "*pidgin_conv_entry" binding "pidgin-bindings"
class "GtkEntry" binding "gtk-emacs-text-entry"