From a9ccb078e6beb5e342d439b346355178e3973d70 Mon Sep 17 00:00:00 2001 From: Joseph Groocock Date: Fri, 1 Apr 2016 17:39:45 +0100 Subject: [PATCH] Fix alt-left/right in termite --- .zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index 17a3669..6b7ffd4 100644 --- a/.zshrc +++ b/.zshrc @@ -15,8 +15,8 @@ setopt appendhistory autocd extendedglob export WORDCHARS='*?_[]~=&;!#$%^(){}' bindkey -e -bindkey "\e$terminfo[kcub1]" backward-word -bindkey "\e$terminfo[kcuf1]" forward-word +bindkey "\e[1;3C" forward-word +bindkey "\e[1;3D" backward-word bindkey "^[[7~" beginning-of-line bindkey "^[[8~" end-of-line