spacemacs/layers/+web/eww/funcs.el

163 lines
5.9 KiB
EmacsLisp
Raw Normal View History

;;; funcs.el --- EWW Layer funcs File for Spacemacs
;;
2022-02-12 04:10:23 +00:00
;; Copyright (c) 2012-2022 Sylvain Benner & Contributors
;;
;; Author: Colton Kopsa <coljamkop@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
2022-02-12 04:10:23 +00:00
;;; Commentary:
2022-02-12 04:10:23 +00:00
;;; Code:
;;;; Misc
(defun spacemacs/eww-toggle-render-latex ()
"Toggle rendering of LaTeX fraagments."
(interactive)
(call-interactively #'texfrag-mode)
(when texfrag-mode
(eww-reload)))
2022-02-12 04:10:23 +00:00
;;;; Transient State
(defun spacemacs//eww-ts-toggle-hint ()
"Toggle full hint docstring for EWW transient state."
(interactive)
(setq spacemacs--eww-ts-full-hint-toggle
(not spacemacs--eww-ts-full-hint-toggle)))
(defun spacemacs//eww-ts-hint ()
"Return a condensed/full hint for the eww transient state"
(concat
" "
(if spacemacs--eww-ts-full-hint-toggle
spacemacs--eww-ts-full-hint
(concat "[" (propertize "?" 'face 'hydra-face-red) "] help"))))
(defun spacemacs//eww-setup-transient-state ()
2022-02-12 04:10:23 +00:00
"Setup EWW transient state with toggleable help hint.
Beware: due to transient state's implementation details this
function must be called in the :init section of `use-package' or
full hint text will not show up!"
(spacemacs|transient-state-format-hint eww
spacemacs--eww-ts-full-hint
2022-02-12 04:10:23 +00:00
"
[_?_] toggle help
Navigation^^^^^^^^ Layout/Appearance^^ Zoom^^ List/view^^ Other^^
----------^^^^^^^^--------------- ---------^^------------------ -----------^^------ -------^^----------- -----^^-----------------------
[_h_/_j_/_k_/_l_] scroll l/d/u/r [_v_] toggle visual-line-mode [_+_] zoom-in [_W_] list buffers [_r_] reload page
[_H_/_L_] prev/next eww-buff^^^^ [_w_] toggle writeroom-mode [_-_] zoom-out [_S_] list histories [_x_] view in external browser
[_<_/_>_] history back/forw^^^^ [_c_] toggle colors [_=_] unzoom [_B_] list bookmarks [_d_] download
[_[_/_]_] page previous/next^^^^ [_t_] toggle latex ^^ [_V_] view source [_B_] add bookmark
[_u_] page up^^^^^^ [_C_] cycle theme ^^ ^^ [_q_] quit
2022-02-12 04:10:23 +00:00
[_t_] top url^^^^^^")
(spacemacs|define-transient-state eww
:title "Eww Transient State"
:hint-is-doc t
:dynamic-hint (spacemacs//eww-ts-hint)
:on-enter (setq which-key-inhibit t)
:on-exit (setq which-key-inhibit nil)
:evil-leader-for-mode (eww-mode . ".")
:bindings
("?" spacemacs//eww-ts-toggle-hint)
;; Navigation
2022-02-12 04:10:23 +00:00
;; ("j" evil-next-line)
;; ("k" evil-previous-line)
;; ("h" evil-backward-char)
;; ("l" evil-forward-char)
("<" eww-back-url)
(">" eww-forward-url)
("[" eww-previous-url)
("]" eww-next-url)
("H" spacemacs/eww-jump-previous-buffer)
("L" spacemacs/eww-jump-next-buffer)
("u" eww-up-url)
("t" eww-top-url)
;; Layout/Appearance
2022-02-12 04:10:23 +00:00
;; ("w" writeroom-mode)
("v" visual-line-mode)
("c" eww-toggle-colors)
2022-02-12 04:10:23 +00:00
("t" spacemacs/eww-toggle-render-latex)
("C" spacemacs/cycle-spacemacs-theme)
;; Zoom
2022-02-12 04:10:23 +00:00
;; ("+" zoom-frm-in)
;; ("-" zoom-frm-out)
;; ("=" zoom-frm-unzoom)
;; ;; Lit/view
("W" eww-list-buffers)
("S" eww-list-histories)
("B" eww-list-bookmarks)
("V" eww-view-source)
;; Other
("r" eww-reload)
("x" eww-browse-with-external-browser :exit t)
("d" eww-download)
("B" eww-add-bookmark)
("q" nil :exit t)))
2022-02-12 04:10:23 +00:00
;;;; EWW Buffers
(defun spacemacs//eww-get-buffers ()
2022-02-12 04:10:23 +00:00
"Update and return the list of EWW buffers."
(let ((current-buffers (buffer-list))
(current-eww-buffers))
;; add new eww buffers to a temporary list
(dolist (buffer current-buffers)
(with-current-buffer buffer
(when (and (derived-mode-p 'eww-mode)
(not (memq buffer spacemacs--eww-buffers)))
(push buffer current-eww-buffers))))
(unless (or current-eww-buffers spacemacs--eww-buffers)
(user-error "No EWW buffers"))
;; remove deleted buffers
(dolist (buffer spacemacs--eww-buffers)
(when (not (memq buffer current-buffers))
(delq buffer spacemacs--eww-buffers)))
2022-02-12 04:10:23 +00:00
;; append new buffers
(nconc spacemacs--eww-buffers current-eww-buffers)))
2022-02-12 04:10:23 +00:00
(defun spacemacs//eww-next-buffer ()
"Return the next EWW buffer or cycle to the oldest one."
(let* ((eww-buffers (spacemacs//eww-get-buffers))
2022-02-12 04:10:23 +00:00
(eww-buffer-pos (seq-position eww-buffers (current-buffer))))
(if (eql eww-buffer-pos (1- (length eww-buffers)))
(car eww-buffers)
(nth (1+ eww-buffer-pos) eww-buffers))))
2022-02-12 04:10:23 +00:00
(defun spacemacs//eww-previous-buffer ()
"Return the previous EWW buffer or cycle to the latest one."
(let* ((eww-buffers (spacemacs//eww-get-buffers))
2022-02-12 04:10:23 +00:00
(eww-buffer-pos (seq-position eww-buffers (current-buffer))))
(if (zerop eww-buffer-pos)
(car (last eww-buffers))
(nth (1- eww-buffer-pos) eww-buffers))))
(defun spacemacs/eww-jump-next-buffer ()
2022-02-12 04:10:23 +00:00
"Open the next EWW buffer or cycle to the oldest one."
(interactive)
2022-02-12 04:10:23 +00:00
(pop-to-buffer-same-window (spacemacs//eww-next-buffer)))
(defun spacemacs/eww-jump-previous-buffer ()
2022-02-12 04:10:23 +00:00
"Open the previous EWW buffer or cycle to the latest one."
(interactive)
2022-02-12 04:10:23 +00:00
(pop-to-buffer-same-window (spacemacs//eww-previous-buffer)))
;;; funcs.el ends here