diff options
| author | Jack Jamison <jackqjamison@gmail.com> | 2026-07-05 01:19:30 -0400 |
|---|---|---|
| committer | Jack Jamison <jackqjamison@gmail.com> | 2026-07-05 01:19:30 -0400 |
| commit | bdf9a71ab7baa2b1de9abcfd5df1a9107a55d141 (patch) | |
| tree | c4524e6c41aa5107211103401dabfaefc81aa882 /.config/emacs/lisp/evil-collection/modes/eww | |
| parent | fe3984f541bd32bdfa418afb305b614176b55ca0 (diff) | |
add a bunch of emacs packages HELP
Diffstat (limited to '.config/emacs/lisp/evil-collection/modes/eww')
| -rw-r--r-- | .config/emacs/lisp/evil-collection/modes/eww/README.org | 61 | ||||
| -rw-r--r-- | .config/emacs/lisp/evil-collection/modes/eww/evil-collection-eww.el | 128 |
2 files changed, 189 insertions, 0 deletions
diff --git a/.config/emacs/lisp/evil-collection/modes/eww/README.org b/.config/emacs/lisp/evil-collection/modes/eww/README.org new file mode 100644 index 0000000..2b0aaa4 --- /dev/null +++ b/.config/emacs/lisp/evil-collection/modes/eww/README.org @@ -0,0 +1,61 @@ +* eww + + Evil bindings for [[https://www.gnu.org/software/emacs/manual/html_node/eww/index.html][EWW]] (Emacs Web Wowser). + +** eww-mode-map + + | Command | Original | Evil | + |------------------------------------+------------+--------------------| + | =eww-up-url= | =u= | =^=, =u= | + | =eww-top-url= | =t= | =U= | + | =eww-back-url= | =l=, =DEL= | =H=, =DEL= | + | =eww-forward-url= | =r= | =L= | + | =eww-view-source= | =v= | =gf= | + | =eww-browse-with-external-browser= | =&= | =&=, =S-RET=, =go= | + | =url-cookie-list= | =C= | =gc= | + | =eww-toggle-paragraph-direction= | =D= | =zd= | + | =eww-set-character-encoding= | =E= | =ze= | + | =eww-toggle-fonts= | =F= | =zf= | + | =eww-download= | =d= | =d= | + | =eww-add-bookmark= | =b= | =m= | + | =eww-readable= | =R= | =R=, =r= | + | =eww-next-url= | =n= | =]]=, =gj= | + | =eww-previous-url= | =p= | =[[=, =gk= | + | =eww= | =G= | =o= | + | =scroll-up-command= | n/a | =SPC= | + | =scroll-down-command= | n/a | =S-SPC= | + | =shr-next-link= | =TAB= | =TAB= | + | =shr-previous-link= | =S-TAB= | =S-TAB= | + | =eww-list-bookmarks= | =B= | =gb= | + | =eww-list-histories= | =H= | =gh= | + | =eww-list-buffers= | =S= | =gt= | + | =eww-reload= | =g= | =gr= | + | =eww-copy-page-url= (=y= operator) | =w= | =yu= | + | =quit-window= | n/a | =q=, =ZQ=, =ZZ= | + +** eww-history-mode-map + + | Command | Original | Evil | + |----------------------+----------+-------| + | =eww-history-browse= | =RET= | =RET= | + | =revert-buffer= | n/a | =gr= | + +** eww-buffers-mode-map + + | Command | Original | Evil | + |----------------------------+----------+------------| + | =eww-buffer-kill= | =D= | =D= | + | =eww-buffer-select= | =RET= | =RET= | + | =eww-buffer-show-next= | n/a | =]]=, =gj= | + | =eww-buffer-show-previous= | n/a | =[[=, =gk= | + | =revert-buffer= | n/a | =gr= | + +** eww-bookmark-mode-map + + | Command | Original | Evil | + |------------------------------------+----------+-------| + | =eww-bookmark-kill= | =D= | =D= | + | =eww-bookmark-yank= | =P= | =P= | + | =eww-bookmark-browse= | =RET= | =RET= | + | =revert-buffer= | n/a | =gr= | + | =eww-copy-page-url= (=y= operator) | n/a | =yu= | diff --git a/.config/emacs/lisp/evil-collection/modes/eww/evil-collection-eww.el b/.config/emacs/lisp/evil-collection/modes/eww/evil-collection-eww.el new file mode 100644 index 0000000..96a848e --- /dev/null +++ b/.config/emacs/lisp/evil-collection/modes/eww/evil-collection-eww.el @@ -0,0 +1,128 @@ +;;; evil-collection-eww.el --- Evil bindings for EWW -*- lexical-binding: t -*- + +;; Copyright (C) 2017 Pierre Neidhardt + +;; Author: Pierre Neidhardt <mail@ambrevar.xyz> +;; Maintainer: James Nguyen <james@jojojames.com> +;; Pierre Neidhardt <mail@ambrevar.xyz> +;; URL: https://github.com/emacs-evil/evil-collection +;; Version: 0.0.1 +;; Package-Requires: ((emacs "26.3")) +;; Keywords: evil, eww, tools + +;; This file 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, or (at your +;; option) any later version. +;; +;; This file 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. +;; +;; For a full copy of the GNU General Public License +;; see <http://www.gnu.org/licenses/>. + +;;; Commentary: +;; Evil bindings for EWW. + +;;; Code: +(require 'eww) +(require 'evil-collection) + +(defvar evil-collection-eww-maps '(eww-mode-map + eww-history-mode-map + eww-buffers-mode-map + eww-bookmark-mode-map)) + +;;;###autoload +(defun evil-collection-eww-setup () + "Set up `evil' bindings for `eww'." + + (evil-set-initial-state 'eww-mode 'normal) + (evil-collection-define-key 'normal 'eww-mode-map + "^" 'eww-up-url + "u" 'eww-up-url + "U" 'eww-top-url + (kbd "DEL") 'eww-back-url + "H" 'eww-back-url + "L" 'eww-forward-url + + "gf" 'eww-view-source ; Like qutebrowser. + + "&" 'eww-browse-with-external-browser + "gc" 'url-cookie-list + "zd" 'eww-toggle-paragraph-direction + "ze" 'eww-set-character-encoding + "zf" 'eww-toggle-fonts + "d" 'eww-download + "m" 'eww-add-bookmark + "R" 'eww-readable ; Default binding. + "r" 'eww-readable + + "]]" 'eww-next-url + "[[" 'eww-previous-url + "gj" 'eww-next-url + "gk" 'eww-previous-url + + ;; open + (kbd "S-<return>") 'eww-browse-with-external-browser + "go" 'eww-browse-with-external-browser + "o" 'eww ; Like qutebrowser. + + (kbd "SPC") 'scroll-up-command + (kbd "S-SPC") 'scroll-down-command + (kbd "<tab>") 'shr-next-link + (kbd "<backtab>") 'shr-previous-link + + ;; bookmarks + "gb" 'eww-list-bookmarks + + "gh" 'eww-list-histories + "gt" 'eww-list-buffers ; Like dwb, qutebrowser. + + ;; refresh + "gr" 'eww-reload + + ;; quit + "q" 'quit-window + "ZQ" 'quit-window + "ZZ" 'quit-window) + + (evil-collection-define-operator-key 'yank 'eww-mode-map + "u" 'eww-copy-page-url) + + (evil-collection-set-readonly-bindings 'eww-history-mode-map) + (evil-set-initial-state 'eww-history-mode 'normal) + (evil-collection-define-key 'normal 'eww-history-mode-map + (kbd "RET") 'eww-history-browse + ;; refresh + "gr" 'revert-buffer) + + (evil-collection-set-readonly-bindings 'eww-buffers-mode-map) + (evil-set-initial-state 'eww-buffers-mode 'normal) + (evil-collection-define-key 'normal 'eww-buffers-mode-map + "D" 'eww-buffer-kill + (kbd "RET") 'eww-buffer-select + "]]" 'eww-buffer-show-next + "[[" 'eww-buffer-show-previous + "gj" 'eww-buffer-show-next + "gk" 'eww-buffer-show-previous + ;; refresh + "gr" 'revert-buffer) + + (evil-collection-set-readonly-bindings 'eww-bookmark-mode-map) + (evil-set-initial-state 'eww-bookmark-mode 'normal) + (evil-collection-define-key 'normal 'eww-bookmark-mode-map + "D" 'eww-bookmark-kill + "P" 'eww-bookmark-yank + + (kbd "RET") 'eww-bookmark-browse + ;; refresh + "gr" 'revert-buffer) + + (evil-collection-define-operator-key 'yank 'eww-bookmark-mode-map + "u" 'eww-copy-page-url)) + +(provide 'evil-collection-eww) +;;; evil-collection-eww.el ends here |
