From d232000c54696887b12bae18533a39ec32bb59fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Tue, 2 Jun 2020 10:32:21 +0900 Subject: [PATCH] Fix compilation. --- helix-core/src/state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-core/src/state.rs b/helix-core/src/state.rs index 682d298a..1ffd708e 100644 --- a/helix-core/src/state.rs +++ b/helix-core/src/state.rs @@ -92,7 +92,7 @@ impl State { // range.to() // } // } else { - let pos = self.move_pos(range.head, dir, granularity, 1) + let pos = self.move_pos(range.head, dir, granularity, 1); // }; SelectionRange::new(pos, pos) });