Fork me on GitHub
#emacs
<
2018-10-08
>
solf09:10:03

Question about org-emacs agenda: what does SPACE do in org-mode agenda view? It says it's for :tag-char but I can't find what it is

benzap09:10:36

the spacebar?

benzap09:10:55

You could try C-h k SPACE to get the command that it's calling

benzap09:10:22

That's Control+h, then hit the space bar

benzap09:10:22

If you want a list of all commands that are bound for your major-mode + minor-mode's, you can run C-h m

solf10:10:40

sorry it's not SPACE directly, it's when you enter / then SPACE. It's not a key in a keymap, I traced the code:

(or (eq char ?\s)
	  (setq a (rassoc char alist))
	  (and tag (setq a (cons tag nil))))

solf10:10:46

now to find out what that does :d