I recently found VIM and started using it. I found the arrows and backspace to be flawed.
so I did this to the backspace
set backspace+=indent,eol,start
how can this be done to the arrow key to allow normal navigation?
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.
You don’t say exactly what aspect of the arrow keys you think is “flawed”, so I’ll just have to guess.
You can use the
whichwrapsetting to get part of what you probably want. From:help whichwrap:In your case, you probably want:
This will make left and right wrap around line endings.
You can also try mapping
<Up>and<Down>togkandgjin normal and visual modes if the distinction between logical and display lines is confusing you. Alternatively, you could:set nowrapto remove the distinction altogether.