Info key bindings

  • u, Info-up: go to the superior node of this node.
  • g1 - g9, gm, gt, gT: same as regular Info key bindings without evil.
  • gj, gk: Info-next and Info-prev, same as n and p in regular Info key bindings.

Calc key bindings

Note: the key bindings from evil-collection are very broken, so keybindings shown here are the original with evil-collection disabled.

(after !evil
  (remove-hook 'evil-collection-init #'calc-mode))
 
;; Alternatively, use `set-evil-initial-state!', which includes (after! evil ...).
(set-evil-initial-state! #'calc-mode 'emacs)
  • q, calc-quit: exit Calc mode and close its windows.
  • C-x * 0, calc-reset: reset Calc to its initial state. It does not erase the values of any variables.
  • C-x * b, calc-big-or-small: Toggle full screen Calc. Use before C-x * c, that is M-x calc.
  • U, D: calc-undo and calc-redo.
  • t y: yank a number from trail to the stack.
  • t ], calc-trail-last: reset the trail pointer to the last entry.
  • t p, t n: move the trail pointer to previous or next entry.
  • y, calc-copy-to-buffer: Copy the top of stack into an editing buffer.
  • d 6: Display numbers in hex.

Magit key bindings

evil-collection-magit-use-y-for-yank

replace “y” for magit-show-refs with “yy” for evil-collection-magit-yank-whole-line, “ys” for magit-copy-section-value, “yb” for magit-copy-buffer-revision and “yr” for magit-show-refs. This keeps “y” for magit-show-refs, in the help popup (magit-dispatch).

evil-collection-magit-use-z-for-folds

When non nil (default in Doom), use “z” as a prefix for common vim fold commands, such as

  • z1 Reset visibility to level 1 for all sections
  • z2 Reset visibility to level 2 for all sections
  • z3 Reset visibility to level 3 for all sections
  • z4 Reset visibility to level 4 for all sections
  • za Toggle a section
  • zo Show section
  • zO Show sections recursively
  • zc Hide section
  • zC Hide sections recursively
  • zr Same as z4.

Activate additional evil-collection-MODULE

(after! mpdel
  (add-transient-hook! 'mpdel-mode
    (+evil-collection-init 'mpdel)))