About a year ago I found the joys of using vi as the editor when editing files in Linux. It's really easy to use and for quick changes to files it is ideal.
Here is a quick guide to ways of doing things in vi:
start vi and open the file named 'filename'.
vi filename
Go into 'insert/edit' mode
Press the 'ins' key or 'i'
Go from 'insert/edit' mode into 'command' mode (To save / close files)
Press 'Esc' key
When in command mode save file (w = write)
Press ':' then 'w'
When in command mode exit file (q = quit)
Press ':' then 'q'
When in command mode save file then exit file (w = write then q = quit)
Press ':' then 'wq'
finally
When in command mode exit file without saving(q! = quit discard changes)
Press ':' then 'q!'
There are many other commands but the list above should get you going very fast.