summaryrefslogtreecommitdiffhomepage
path: root/custom/jao-custom-eww.el
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2022-09-02 02:37:20 +0100
committerjao <jao@gnu.org>2022-09-02 02:37:20 +0100
commit2c6afef1f6bb75097bd192ccb8a88489da4eb063 (patch)
tree656149d9ccab329a71780fb71f8265e100b588f8 /custom/jao-custom-eww.el
parent68d9a048cdd05d19fe79f87a2ec32dde14fd282b (diff)
downloadelibs-2c6afef1f6bb75097bd192ccb8a88489da4eb063.tar.gz
elibs-2c6afef1f6bb75097bd192ccb8a88489da4eb063.tar.bz2
afio frame toggling and clean-ups
Diffstat (limited to 'custom/jao-custom-eww.el')
-rw-r--r--custom/jao-custom-eww.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/custom/jao-custom-eww.el b/custom/jao-custom-eww.el
index dbe147f..ae486fb 100644
--- a/custom/jao-custom-eww.el
+++ b/custom/jao-custom-eww.el
@@ -5,7 +5,7 @@
"Browse URL using eww."
(if (derived-mode-p 'eww-mode)
(eww url)
- (jao-afio--goto-www)
+ (jao-afio-goto-www)
(select-window (frame-first-window))
(let* ((url (url-encode-url url))
(bf (seq-find `(lambda (b)
@@ -66,7 +66,7 @@
:annotate (lambda (c) (get-text-property 0 'url c))
:history 'jao-eww-consult-history
:action (lambda (b)
- (jao-afio--goto-www)
+ (jao-afio-goto-www)
(switch-to-buffer (get-text-property 0 'buffer b)))
:items
(lambda ()
@@ -100,7 +100,7 @@
(interactive "P")
(if (> (length jao-eww--closed-urls) 0)
(let ((url (completing-read "URL: " jao-eww--closed-urls)))
- (jao-afio--goto-www)
+ (jao-afio-goto-www)
(setq jao-eww--closed-urls (remove url jao-eww--closed-urls))
(eww url (when arg 4)))
(message "No previously closed URLs.")))