Background
After using nvim for couple month, I am quite comfortable to move between text within the text editor. But I find myself being quite strange in terminal. Therefore, here is a small research on basic movement in linux terminal
Navigate to start/end of line
1
2
<C-A> for start , equivalent of _ in vim
<C-E> for end , equivalent of $ in vim
Navigate to previous/next word
1
2
3
4
<A-B> for previous word , equivalent to b in vim
<A-F> for next word, equivalent to w in vim
# Delete