blob: da2c5d929e1345c3a655178a894864c5adbfeafb (
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
|
# Some default functions for CoqIde. You may copy the file in your HOME and
# edit as you want. See
# http://developer.gnome.org/doc/API/2.0/gtk/gtk-Resource-Files.html
# for a complete set of options
# To set the font of the text windows, edit the .coqiderc file through the menus.
binding "text" {
bind "<ctrl>k" { "set-anchor" ()
"move-cursor" (display-line-ends,1,0)
"cut-clipboard" ()
}
bind "<ctrl>w" { "cut-clipboard" () }
bind "<ctrl>x" { }
bind "F13" {"insert-at-cursor" ("∀")}
bind "F14" {"insert-at-cursor" ("∃")}
}
class "GtkTextView" binding "text"
style "views" {
base[NORMAL] = "CornSilk"
}
class "GtkTextView" style "views"
widget "*.*.*.*.*.ScriptWindow" style "views"
widget "*.*.*.*.GoalWindow" style "views"
widget "*.*.*.*.MessageWindow" style "views"
gtk-font-name = "Sans 12"
style "location" {
font_name = "Monospace 10"
}
widget "*location*" style "location"
gtk-key-theme-name = "Emacs"
|