evil-collection icon indicating copy to clipboard operation
evil-collection copied to clipboard

Requests

Open jojojames opened this issue 3 years ago • 5 comments

Requested Packages

  • [ ] calf/calfw https://github.com/emacs-evil/evil-collection/issues/211
  • [ ] git-gutter https://github.com/emacs-evil/evil-collection/issues/561
  • [ ] hexl https://github.com/emacs-evil/evil-collection/issues/564
  • [ ] jupyter https://github.com/emacs-evil/evil-collection/issues/538
  • [ ] lpy https://github.com/emacs-evil/evil-collection/issues/479
  • [ ] org-noter https://github.com/emacs-evil/evil-collection/issues/609
  • [ ] osm https://github.com/emacs-evil/evil-collection/issues/607
  • [ ] pacmacs https://github.com/emacs-evil/evil-collection/issues/472
  • [ ] snake https://github.com/emacs-evil/evil-collection/issues/603
  • [ ] tempel https://github.com/emacs-evil/evil-collection/issues/594
  • [ ] julia-mode https://github.com/emacs-evil/evil-collection/issues/688
  • [ ] matlab-mode https://github.com/emacs-evil/evil-collection/issues/688
  • [ ] sqlite-mode https://github.com/emacs-evil/evil-collection/issues/749
  • [ ] org-transclusion https://github.com/emacs-evil/evil-collection/issues/737
  • [ ] ChatGPT-Shell https://github.com/emacs-evil/evil-collection/issues/742

Feature Requests

  • [ ] vundo Hiding cursor in Vundo https://github.com/emacs-evil/evil-collection/issues/648
  • [ ] pdf Update pdf selection functionality https://github.com/emacs-evil/evil-collection/issues/683

jojojames avatar Jun 01 '22 15:06 jojojames

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)

LemonBreezes avatar Jan 21 '25 02:01 LemonBreezes

Also (https://elpa.gnu.org/packages/chess.html), (https://hg.sr.ht/~zck/minesweeper), and (https://codeberg.org/Nzgg/Emacs-Klondike).

LemonBreezes avatar Jan 21 '25 03:01 LemonBreezes

I'd love to see howm added to the list: https://github.com/kaorahi/howm https://github.com/Emacs101/howm-manual/issues/1

elliottw avatar Jan 29 '25 17:01 elliottw

Just made a PR for minesweeper: https://github.com/emacs-evil/evil-collection/pull/857.

LemonBreezes avatar Jan 30 '25 13:01 LemonBreezes

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.

LemonBreezes avatar Feb 16 '25 15:02 LemonBreezes