Search Results
7/25/2025, 3:54:41 AM
>>106004458
>any suggestions on learning Emacs?
Enable which-key. If you have Emacs 30.1 or newer, it's built in so there's nothing to install. Just add this to your config.
(which-key-mode 1)
If you have an older version of Emacs, add this to your config.
(use-package which-key
:ensure t
:config
(which-key-mode 1))
https://github.com/justbur/emacs-which-key
What it does is show you what options you after you press a key. For example, if you press C-x and then wait a second, you might see something like pic-related.
>any suggestions on learning Emacs?
Enable which-key. If you have Emacs 30.1 or newer, it's built in so there's nothing to install. Just add this to your config.
(which-key-mode 1)
If you have an older version of Emacs, add this to your config.
(use-package which-key
:ensure t
:config
(which-key-mode 1))
https://github.com/justbur/emacs-which-key
What it does is show you what options you after you press a key. For example, if you press C-x and then wait a second, you might see something like pic-related.
Page 1