How to go to first line in a file in Gvim ?
|
In command mode (press Esc if you are not sure)
|
|||||||||||||
|
i found the following in the Help of the program.03.5 Moving to a specific line If you are a C or C++ programmer, you are familiar with error messages such as the following:
This tells you that you might want to fix something on line 33. So how do you find line 33? One way is to do "9999k" to go to the top of the file and "32j" to go down thirty two lines. It is not a good way, but it works. A much better way of doing things is to use the "G" command. With a count, this command positions you at the given line number. For example, "33G" puts you on line 33. (For a better way of going through a compiler's error list, see |usr_30.txt|, for information on the :make command.) With no argument, "G" positions you at the end of the file. A quick way to go to the start of a file use "gg". "1G" will do the same, but is a tiny bit more typing. |
|||
|
|