The way of Emacs Flashcards

1
Q

Negative Universal Argument

A

C-- or M--

Before any command, when M-d will kill next word, M-- M-d will kill previous

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Help during prefix commands

A

For commands “grouped” together by common prefix (like special characters under C-x 8 ...) you can find all possible “endings” with C-h (C-x 8 C-h)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Apropos

A

C-h a apropos-command .
and slightly more general apropos which will also search through functions and variables.
Will perform a general search for keywords in commands and its documentation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Function description

A

‘C-h f` will show docs generated from code comments.

C-h F will try to show full documentation (in plain English).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Find key bindings.

A

C-h w where-is.

Will display key bindings to given command.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Find command under some keys.

A

C-h c describe-key-briefly just in minibuffer.
C-h k describe-key for “full” documentation.
Could be used if you would like to modify or learn more about often used key binding. To learn more just C-h k C-h k.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

View messages.

A

C-h e will display message buffer. Also accessible as any other buffer C-x b *mess...

How well did you know this?
1
Not at all
2
3
4
5
Perfectly