top | item 22463099

(no title)

freakcage | 6 years ago

Cool article, but here I am don't know how to jump between words on iterm2

discuss

order

acidictadpole|6 years ago

Something that I do:

`set -o vi` and then hit `<ESC>`. You now have vim motion-like controls to navigate on the command line:

- `b` goes back a word.

- `w` goes forward a word.

- `0` goes to the beginning of the line.

- `$` goes to the end of the line.

etc.

I put `set -o vi` in my rc file so I have it on by default.