From 99341be866377121ef2421cea658f70ab6d0ac4e Mon Sep 17 00:00:00 2001 From: Jon Rogers Date: Tue, 18 Jun 2013 20:01:51 -0700 Subject: [PATCH] GH-21: fix bindkey strings for up and down arrows --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c84d78..d1f4f9f 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Usage 2. Bind keyboard shortcuts to this script's functions: # bind UP and DOWN arrow keys - for keycode in '[' '0'; do + for keycode in '[' 'O'; do bindkey "^[${keycode}A" history-substring-search-up bindkey "^[${keycode}B" history-substring-search-down done