evil-collection
evil-collection copied to clipboard
Requests
Requested Packages
- [ ]
calf/calfwhttps://github.com/emacs-evil/evil-collection/issues/211 - [ ]
git-gutterhttps://github.com/emacs-evil/evil-collection/issues/561 - [ ]
hexlhttps://github.com/emacs-evil/evil-collection/issues/564 - [ ]
jupyterhttps://github.com/emacs-evil/evil-collection/issues/538 - [ ]
lpyhttps://github.com/emacs-evil/evil-collection/issues/479 - [ ]
org-noterhttps://github.com/emacs-evil/evil-collection/issues/609 - [ ]
osmhttps://github.com/emacs-evil/evil-collection/issues/607 - [ ]
pacmacshttps://github.com/emacs-evil/evil-collection/issues/472 - [ ]
snakehttps://github.com/emacs-evil/evil-collection/issues/603 - [ ]
tempelhttps://github.com/emacs-evil/evil-collection/issues/594 - [ ]
julia-modehttps://github.com/emacs-evil/evil-collection/issues/688 - [ ]
matlab-modehttps://github.com/emacs-evil/evil-collection/issues/688 - [ ]
sqlite-modehttps://github.com/emacs-evil/evil-collection/issues/749 - [ ]
org-transclusionhttps://github.com/emacs-evil/evil-collection/issues/737 - [ ]
ChatGPT-Shellhttps://github.com/emacs-evil/evil-collection/issues/742
Feature Requests
- [ ]
vundoHiding cursor in Vundo https://github.com/emacs-evil/evil-collection/issues/648 - [ ]
pdfUpdate pdf selection functionality https://github.com/emacs-evil/evil-collection/issues/683
Also add gptel for gptel-context-buffer-mode-map support. As an example, here
is the quick hack I am using in my Doom Emacs config:
(map! :map gptel-context-buffer-mode-map
:n "q" #'gptel-context-quit
:n "n" #'gptel-context-next
:n "p" #'gptel-context-previous
:n "d" #'gptel-context-flag-deletion
:n "RET" #'gptel-context-visit)
Also (https://elpa.gnu.org/packages/chess.html), (https://hg.sr.ht/~zck/minesweeper), and (https://codeberg.org/Nzgg/Emacs-Klondike).
I'd love to see howm added to the list: https://github.com/kaorahi/howm https://github.com/Emacs101/howm-manual/issues/1
Just made a PR for minesweeper: https://github.com/emacs-evil/evil-collection/pull/857.
On my Doomemacs, I'm currently using
(after! evil
(set-keymap-parent (evil-get-auxiliary-keymap chess-display-mode-map 'normal t)
chess-display-mode-map)
(map! :map chess-display-mode-map
:n "/" #'chess-display-pass))
for Chess. This works pretty well for me actually. No need to remap every key one by one. I haven't used the other features of Chess yet though so the other keymaps are absent.