Cheat Sheet for emacs editor

Emacs Command	what it does		vi-equivalent

esc >		goes to bottom		G
esc <		goes to top		1G
ctrl-v		page down		ctrl-f
esc-v		page up			ctrl-b

ctrl d		delete character	x
ctrl k		delete to EOL		D (dd from beginning of line)

ctrl x, ctrl s	Save file		:w
ctrl x, ctrl c	Exit			:q

ctrl s		search			\

ctrl a		beginning of line	^
ctrl e		end of line		$

---
- Emacs works off the initial copy of the data until you go to write to it,
where it creates a "filename~" file backup.  If you fill up the filesystem
while doing this, you can delete the filename~ file and re-save the file
without doubling the space used.

- Emacs reads from ~.emacs for initial settings.  The two settings below
will eliminate backup files and will wipe out the autosave files 
emacs is configured to create

;;; General Stuff
; semicolons are comments..

(setq make-backup-files nil)
(setq delete-auto-save-files t)