In zshell how to move forward word, I can set -o vi and use vi format. Is there a way to move forward in zshell by a word
Share
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 ZLE widget for moving forward by one word is
forward-word. Therefore, you may usebindkeyto bind this widget to any key you want.For example,
would allow you to move forward by one word when pressing
Ctrl-O. Note that^Ois actually a quoted insert of Control followed byO.