Huh? There are zillions of ways to delete. "dw" delete's word, "4dw" deletes 4 words, "dd" deletes line, "5dd" deletes 5 lines, "d$" deletes to end of line, "d^" deletes to beginning of line, "dG" deletes to the end of file, "d/someword" deletes everything from your cursor position to the word someword, etc, etc, etc, etc.
Press 'j' to move down a line, 'k' to move up a line, 'h' to move left a char, 'l' to move right a char, "4j" to move down 4 lines. Press "<CTRL>+b" to move back a page, "<CTRL>+f" to move forward a page. Press "1G" to move to the beginning of the file, "G" to move to end of file, etc, etc, etc, etc..
"/someword" find the next occurance of "someword", etc.
[ September 22, 2002: Message edited by: void main ]