diff options
Diffstat (limited to 'pl/cfg.pl')
-rw-r--r-- | pl/cfg.pl | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -67,3 +67,10 @@ get_focus(V) :- integer(V), ! ; V = 1 ). + +set_dlv_height(V) :- set_key('DlvHeight', V). +get_dlv_height(V) :- + ( get_key('DlvHeight', V), + integer(V), ! + ; V = 0 + ). |