From 94bb9aa086b8ca5504e2f88aed1840b3fc890b57 Mon Sep 17 00:00:00 2001 From: martin-greenberg Date: Fri, 23 Dec 2016 09:58:01 -0800 Subject: [PATCH] correct command for cursor movement to end of line Ctrl+e moves to the *e*nd of the line; ctrl+f moves *f*orward by 1 character (this is why alt+f moves forward by 1 word) --- src/programming/unix-linux.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/programming/unix-linux.json b/src/programming/unix-linux.json index 1f5eaf3..8e2be79 100644 --- a/src/programming/unix-linux.json +++ b/src/programming/unix-linux.json @@ -371,7 +371,7 @@ "description": "move cursor to beginning of line" }, { - "command": "ctrl+f", + "command": "ctrl+e", "description": "move cursor to end of line" }, {