mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 11:06:41 +00:00
12 lines
263 B
Bash
12 lines
263 B
Bash
#
|
|
# VSCode environment setup.
|
|
#
|
|
|
|
if [[ $TERM_PROGRAM == "vscode" ]]; then
|
|
bindkey -e
|
|
|
|
# Fix alt+left/right inserting `;3D` and `;3C` instead of word navigation.
|
|
bindkey '\e[1;3D' backward-word # Alt+Left
|
|
bindkey '\e[1;3C' forward-word # Alt+Right
|
|
fi
|