g opens a dialog without the uri, h/H returns to start page - holymoly - A tor enabled gopher client written in CHICKEN scheme
 (HTM) git clone git://vernunftzentrum.de/holymoly.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit c8432a06b7d48708b2e9409f0e2ed1a030dc90c9
 (DIR) parent eb59c81c952825e39f46c5dbdd1410e75c14586b
 (HTM) Author: Christian Kellermann <ckeen@pestilenz.org>
       Date:   Tue, 11 Sep 2018 15:28:13 +0200
       
       g opens a dialog without the uri, h/H returns to start page
       
       Diffstat:
         holymoly.scm                        |       4 +++-
       
       1 file changed, 3 insertions(+), 1 deletion(-)
       ---
 (DIR) diff --git a/holymoly.scm b/holymoly.scm
       @@ -126,7 +126,9 @@
                                (repeat (length nsteps) (next-cursor! cursor)))
                              np)) ; backspace / pgdown
                           ((113) (k 'quit)) ; q
       -                   ((#x47 #x67) (k (uristring->entry (get-user-input "New uri:" (entry->string (current-page))))) newp) ; G
       +                   ((#x47) (k (uristring->entry (get-user-input "New uri:" (entry->string (current-page))))) newp) ; G
       +                   ((#x67) (k (uristring->entry (get-user-input "New uri:" ))) newp) ; g
       +                   ((#x48 #x68) (k (uristring->entry *start-page*))) ; h/H
                           ((115) (k (uristring->entry *search-uri*)))
                           (else newp)))))))))