From 498c193a633d77d22acf1ce26958f5643bf00f71 Mon Sep 17 00:00:00 2001 From: David Hampton Date: Mon, 26 Mar 2007 03:02:55 +0000 Subject: [PATCH] Record a couple of user suggestions for things to do with gnucash's gtkrc file. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15756 57a11ea4-9604-0410-9ed3-97b8803252fd --- doc/gtkrc-2.0.gnucash | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) 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"