'tis but the price of victory
Isn't this just a normal part of aging? It happens more and more that you don't like new media and don't understand what those crazy kids are into?
Technically that doesn't prove Socrates never said it, he might've, though it would be one hell of a coincidence. It amuses me to think we'll never know.
I'm an Emacs users, so unsurprisingly I use magit, but perhaps surprisingly I use it sparingly, using Emacs's VC most of the time.
This so dumb, but once on the AskReddit someone posted:
Your murderer says, "You get to choose one object. If I can't kill you in 15 minutes with that object, you get to leave." What do you choose?
I wrote:
A confetto (the singular of confetti).
And it received 4.5K up votes.
The problem I have which which-key is that it applies only after a prefix.
There are commands which-key-show-major-mode and which-key-show-top-level, which you could use. On the embark side, there is embark-bindings which by default gives you bindings from the major mode and minor modes, but with C-u will give you global bindings.
Mutating a keymap with setc[ad]r is evil!
Agreed.
why not use (menu-item "dummy" KEYMAP :filter FUNCTION) instead?
Only because I didn't think of it!
That wouldn't be so useful for academic papers, which is the use case described here: I've never heard of a an academic journal that accepts Typst source, but I know of hundreds, probably thousands, that accept LaTeX.
Pocket Casts is fantastic.
What advantage does the Wikipedia app have compared to the mobile website?
Agree on Voyager, that's what I'm using to post this comment!
I use it in all buffers whose major mode is derived from text-mode.
I looked at the macro expansion of the form you wrote and it looks like gibberish, so I don't think the :hook keyword allows expressions to be used as hooks, you need to define a function and use the function name:
(use-package pascal ; presumably
:init
(defun remove-pascal-completions ()
(remove-hook 'completion-at-point-functions
'pascal-completions-at-point t))
:hook (pascal-mode . remove-pascal-completions))
Also, the weird single quote character you used probably doesn't work in Emacs (but maybe you have normal single quotes in your file and it's just lemmy's markdown messing things up).
oantolin
0 post score0 comment score
I'd say completely off. 🙃 Vim's command mode is more like Emacs's execute-extended-command.