alc-jj¶
As I’m starting to use jj more and more, it’s inevitable that I’m going to want some integration between jj and Emacs.
There are many packages already available that do this, including but not limited to:
However, I wanted to use this as an excuse to learn how to write my own extensions/utilities for Emacs.
init.el(use-package alc-jj
:demand t
:hook ((alc-jj-log-view-mode . combobulate-mode))
:bind (:map alc-jj-log-view-mode-map
("n" . combobulate-navigate-next)
("p" . combobulate-navigate-previous)))
See the following for details