Skip to content

Commit

Permalink
Fix M-LEFT and M-RIGHT bindings.
Browse files Browse the repository at this point in the history
We had them backwards for some reason.

Reported-By: Karl Ramm <kcr@mit.edu>
  • Loading branch information
nelhage committed Jun 4, 2009
1 parent fc92548 commit 4f0a2ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keys.c
Expand Up @@ -43,10 +43,10 @@ void owl_keys_setup_keymaps(owl_keyhandler *kh) {

BIND_CMD("M-f", "edit:move-next-word", "");
BIND_CMD("M-O 3 C", "edit:move-next-word", "");
BIND_CMD("M-LEFT", "edit:move-next-word", "");
BIND_CMD("M-RIGHT", "edit:move-next-word", "");
BIND_CMD("M-b", "edit:move-prev-word", "");
BIND_CMD("M-O 3 D", "edit:move-prev-word", "");
BIND_CMD("M-RIGHT", "edit:move-prev-word", "");
BIND_CMD("M-LEFT", "edit:move-prev-word", "");

BIND_CMD("LEFT", "edit:move-left", "");
BIND_CMD("M-[ D", "edit:move-left", "");
Expand Down

0 comments on commit 4f0a2ee

Please sign in to comment.