From 3fc30fa8763973a647daa28524978d4d201cc6dd Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Fri, 4 Jan 2019 19:56:10 +0000 Subject: [PATCH] Ensure CMD-(left|right)arrow works the same as the rest of Linux --- .inputrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.inputrc b/.inputrc index 317c4db..e791dec 100644 --- a/.inputrc +++ b/.inputrc @@ -1,3 +1,5 @@ set bell-style visible set prefer-visible-bell set convert-meta on +"\e[1;5D": backward-word # ctrl + left +"\e[1;5C": forward-word # ctrl + right