From 7bf0466445ab9ffde7fd454c6a19443545adb9c7 Mon Sep 17 00:00:00 2001 From: John Honaker Date: Wed, 7 Jun 2017 12:38:28 -0400 Subject: [PATCH] Fixed some keyboard shortcuts The move to end of line shortcut was incorrect, and I added move forward and backward by one character. --- src/programming/unix-linux.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/programming/unix-linux.json b/src/programming/unix-linux.json index 1f5eaf3..235ed61 100644 --- a/src/programming/unix-linux.json +++ b/src/programming/unix-linux.json @@ -371,9 +371,17 @@ "description": "move cursor to beginning of line" }, { - "command": "ctrl+f", + "command": "ctrl+e", "description": "move cursor to end of line" }, + { + "command": "ctrl+f", + "description": "move cursor forward 1 character" + }, + { + "command": "ctrl+b", + "description": "move cursor backward 1 character" + }, { "command": "alt+f", "description": "move cursor forward 1 word"