lots of dependent changes here, unfortunately - get rid of Buffer.current (it's per-frame now) - in define-command, functions providing default parameter values now accept frame as parameter - in keymaps, parameter values are functions that accept frame as parameter
29 lines
832 B
Fennel
29 lines
832 B
Fennel
(local lgi (require :lgi))
|
|
(local lfs (require :lfs))
|
|
(local { : Gtk : Gdk : WebKit2 : cairo } lgi)
|
|
|
|
(local Command (require :command))
|
|
(local Frame (require :frame))
|
|
(local Buffer (require :buffer))
|
|
|
|
;;; when we decide how to do an init file/rc file, this will go in it
|
|
|
|
(local my-keymap {
|
|
"g" ["visit-location" {:buffer #(. (. $1 :buffer) :name)}]
|
|
"M-q" ["quit-browser" {}]
|
|
"C-x" {
|
|
"C-c" ["quit-browser" {}]
|
|
}
|
|
})
|
|
|
|
(let [f (Frame.new my-keymap)
|
|
b (Buffer.new "main")]
|
|
(f:show-buffer b)
|
|
(b:visit (.. "file://" (lfs.currentdir) "/doc/index.html")))
|
|
|
|
(let [socketdir (or (os.getenv "XDG_RUNTIME_DIR") (os.getenv "HOME"))]
|
|
((. (require :socket-repl) :start)
|
|
(.. socketdir "/dunlin.sock")))
|
|
|
|
(Gtk.main)
|