Today’s #TerminalConfiguration victory, fixing ctrl+left, ctrl+right, alt+left, alt+right - no more weird 5D, 5C, 3D, 3C codes:
```bash
# .bash_profle addition, fixing ctrll+left and ctrl+right
bind '"\e[1;5D": backward-word'
bind '"\e[1;5C": forward-word'
# Do same for alt+left and alt+right:
bind '"\e[1;3D": backward-word'
bind '"\e[1;3C": forward-word'
```
```zsh
# .zshrc addition, fixing ctrl+left and ctrl+right
bindkey ";5C" forward-word
bindkey ";5D" backward-word
# Do same for alt+left and alt+right
bindkey ";3C" forward-word
bindkey ";3D" backward-word
```
I also turned off the ctrl+cursor macOS Mission Control #KeyboardShortcuts as I'd rather have these available at the #CommandLine