From ec3d6e22a8941dca7a124267493d8004b2320f09 Mon Sep 17 00:00:00 2001 From: chrys87 Date: Tue, 19 Jul 2016 10:16:54 +0200 Subject: [PATCH] bugfix typo --- src/fenrir-package/commands/commands/prev_char | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fenrir-package/commands/commands/prev_char b/src/fenrir-package/commands/commands/prev_char index d57837b7..b9f9842b 100644 --- a/src/fenrir-package/commands/commands/prev_char +++ b/src/fenrir-package/commands/commands/prev_char @@ -13,7 +13,7 @@ class command(): environment['screenData']['newCursorReview']['y'] -= 1 environment['screenData']['newCursorReview']['x'] = len(wrappedLines[environment['screenData']['newCursorReview']['y']) - 1 else: - environment['screenData']['newCursorReview']['x'] =- 1 + environment['screenData']['newCursorReview']['x'] -= 1 if wrappedLines[environment['screenData']['newCursorReview']['y']][environment['screenData']['newCursorReview']['x']].strip(" \t\n") == '': environment['runtime']['outputManager'].presentText(environment, "blank") else: