One of the keys Emacs refers to is the key LFD
. For example, calc binds that key to calc-over
. What key is this?
Asked
Active
Viewed 1,938 times
4
1 Answers
6
LFD
refers to "linefeed". This key is similar to return -- in ways not worth discussing here -- but can be input with C-j
.

zck
- 9,092
- 2
- 33
- 65
C-j
is the newline character, aka linefeed, abbreviated nowadays asLF
, notLFD
. See that wikipedia page for the relation between carriage return and linefeed (newline). – Drew Jan 11 '15 at 23:39