diff --git a/doc/gtkrc-2.0.gnucash b/doc/gtkrc-2.0.gnucash index 2f47e571d2..c1cb6d4175 100644 --- a/doc/gtkrc-2.0.gnucash +++ b/doc/gtkrc-2.0.gnucash @@ -169,3 +169,29 @@ widget "GncMainWindow.*.header_color" style : highest "gnc-register-header" widget "GncMainWindow.*.primary_color" style : highest "gnc-register-primary" widget "GncMainWindow.*.secondary_color" style : highest "gnc-register-secondary" widget "GncMainWindow.*.split_color" style : highest "gnc-register-split" + + + +# +# From: calmar +# Allow changing notebook tabs with vim next/prev keys. +# +binding "book" { + bind "k" { + "change-current-page" (1) + } + bind "j" { + "change-current-page" (-1) + } +} +class "GtkNotebook" binding "book" + +# +# From: calmar +# Use larger disclosure tiangles in all tree views. +# +style "wide-tree" +{ + GtkTreeView::expander_size = 20 +} +class "GtkTreeView" style "wide-tree"