How to move cursor to the n-th symbol from the left in Vim?
One of the solutions I see is press 0n<right-arrow>, it will move to the n+1 position. Is there any more natural way to do it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The pipe ‘|’ character may be what you want:
To go to 25th column in a line in normal mode press
25|To go to 37th column in a line in normal mode press
37|and so on. . .