next
index
prev
emacs the end(well at least the last slide)
Basic search in emacs is with C-s.
Search and replace is done with M-%.
emacs does syntax highlighting you can enable this easily by selecting it
in the Options menu.
emacs will align your source code automatically, you can use the tab key
to re-align a specific line.
always re align from top to bottom.
You can compile your code while inside emacs. type M-x compile
.
A new buffer will open it will display compilation results
you can go through them easily having your cursor jump to where the errors
are using
C-x ` (back single quote upper left corner in qwerty).
To maximize current buffer to cover all emacs use C-x 1, (
C-x 2 will split the buffer)
We will look at a little example program we will edit& compile
with emacs:
test.c
next
index
prev