summary refs log tree commit diff stats
path: root/osx
diff options
context:
space:
mode:
authorTingPing <tingping@tingping.se>2014-05-26 23:48:52 -0400
committerTingPing <tingping@tingping.se>2014-05-26 23:48:52 -0400
commitcd1b9f42be11b2245bbbecd3750e44af1e994389 (patch)
tree860d0048b4486dd2e2068154d1120dedfc3f01fd /osx
parent4320d88b9088297e8e8bfe94a119832d7ac381f2 (diff)
osx: Use osx friendly bindings for GtkEntry
Fixes #995
Diffstat (limited to 'osx')
-rw-r--r--osx/gtkrc78
1 files changed, 78 insertions, 0 deletions
diff --git a/osx/gtkrc b/osx/gtkrc
index 0c229ad1..9579fcc3 100644
--- a/osx/gtkrc
+++ b/osx/gtkrc
@@ -439,3 +439,81 @@ binding "gtk-mac-expand-collapse-cursor-row"
   bind "Left"  { "expand-collapse-cursor-row" (0, 0, 0) }
   bind "Right" { "expand-collapse-cursor-row" (0, 1, 0) }
 }
+
+binding "gtk-osx-editable"
+{
+  bind "<primary>a" {
+    "move-cursor" (buffer-ends, -1, 0)
+    "move-cursor" (buffer-ends, 1, 1)
+  }
+
+  unbind "<control>a"
+
+  bind "<primary>c" { "copy-clipboard" () }
+  bind "<primary>x" { "cut-clipboard" () }
+  bind "<primary>v" { "paste-clipboard" () }
+
+  unbind "<control>c"
+  unbind "<control>x"
+  unbind "<control>v"
+
+  bind "<primary>Left" { "move-cursor" (display-line-ends, -1, 0) }
+  bind "<primary>KP_Left" { "move-cursor" (display-line-ends, -1, 0) }
+  bind "<primary><shift>Left" { "move-cursor" (display-line-ends, -1, 1) }
+  bind "<primary><shift>KP_Left" { "move-cursor" (display-line-ends, -1, 1) }
+
+  bind "<primary>Right" { "move-cursor" (display-line-ends, 1, 0) }
+  bind "<primary>KP_Right" { "move-cursor" (display-line-ends, 1, 0) }
+  bind "<primary><shift>Right" { "move-cursor" (display-line-ends, 1, 1) }
+  bind "<primary><shift>KP_Right" { "move-cursor" (display-line-ends, 1, 1) }
+
+  unbind "<control>Left"
+  unbind "<control>KP_Left"
+  unbind "<control><shift>Left"
+  unbind "<control><shift>KP_Left"
+  unbind "<control>Right"
+  unbind "<control>KP_Right"
+  unbind "<control><shift>Right"
+  unbind "<control><shift>KP_Right"
+
+  bind "<alt>Right"           { "move-cursor" (words, 1, 0) }
+  bind "<alt>KP_Right"        { "move-cursor" (words, 1, 0) }
+  bind "<alt>Left"            { "move-cursor" (words, -1, 0) }
+  bind "<alt>KP_Left"         { "move-cursor" (words, -1, 0) }
+  bind "<shift><alt>Right"    { "move-cursor" (words, 1, 1) }
+  bind "<shift><alt>KP_Right" { "move-cursor" (words, 1, 1) }
+  bind "<shift><alt>Left"     { "move-cursor" (words, -1, 1) }
+  bind "<shift><alt>KP_Left"  { "move-cursor" (words, -1, 1) }
+
+  bind "<alt>delete"          { "delete-from-cursor" (word-ends, 1) }
+  bind "<alt>KP_delete"       { "delete-from-cursor" (word-ends, 1) }
+  bind "<alt>backspace"       { "delete-from-cursor" (word-ends, -1) }
+
+  bind "<primary>Down"           { "move-cursor" (buffer-ends, 1, 0) }
+  bind "<primary><shift>Down"    { "move-cursor" (buffer-ends, 1, 1) }
+  bind "<primary>KP_Down"        { "move-cursor" (buffer-ends, 1, 0) }
+  bind "<primary><shift>KP_Down" { "move-cursor" (buffer-ends, 1, 1) }
+
+  bind "<primary>Up"             { "move-cursor" (buffer-ends, -1, 0) }
+  bind "<primary><shift>Up"      { "move-cursor" (buffer-ends, -1, 1) }
+  bind "<primary>KP_Up"          { "move-cursor" (buffer-ends, -1, 0) }
+  bind "<primary><shift>KP_Up"   { "move-cursor" (buffer-ends, -1, 1) }
+
+  unbind "<control>Down"
+  unbind "<control>KP_Down"
+  unbind "<control><shift>Down"
+  unbind "<control><shift>KP_Down"
+  unbind "<control>Up"
+  unbind "<control>KP_Up"
+  unbind "<control><shift>Up"
+  unbind "<control><shift>KP_Up"
+}
+
+binding "gtk-osx-tree-view"
+{
+  bind "<primary>s" { "start-interactive-search" () }
+  unbind "<control>s"
+}
+
+class "GtkEntry" binding "gtk-osx-editable"
+class "GtkTreeView" binding "gtk-osx-tree-view"