Velvet Star Monitor

Standout celebrity highlights with iconic style.

general

Is there a short cut for going back to the beginning of a file by vi editor?

Writer Sebastian Wright

When reading a long file by vi editor, it would be very nice to get back to the beginning of the file by some short cuts when you really need to do so. Even ctrl+B sometimes is too slow. Does anyone know such a tool?

0

9 Answers

After opening a file using vi

1) You can press Shift + g to go the end of the file

and

2) Press g twice to go to the beginning of the file

NOTE : - g is case-sensitive (Thanks to @Ben for pointing it out)

3

using :<line number> you can navigate to any line, thus :1 takes you to the first line.

0

Go to the bottom of the file

  • G
  • Shift + g

Go to the top of the file

  • g+g

Key in 1 + G and it will take you to the beginning of the file. Converserly, G will take you to the end of the file.

3

Well, you have [[ and ]] to go to the start and end of file. This works in vi.

To go end of the file:press ESC

1) type capital G (Capital G)

2) press shift + g (small g)

To go top of the file there are the following ways:press ESC

1) press 1G (Capital G)

2) press gg (small g) or 1gg

3) You can jump to the particular line number,e.g wanted to go 1 line number, press 1 + G

In command mode: : + 1 will take you to first line

1

Typing in 0% takes you to the beginning.

100% takes you to the end.

50% takes you half way.

I've always used Ctrl + Home (start of file) and Ctrl + End (end of file).

Works in both insert and nav modes.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy