diff options
author | Blaž Hrastnik | 2020-06-02 01:32:21 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-06-02 01:34:55 +0000 |
commit | d232000c54696887b12bae18533a39ec32bb59fb (patch) | |
tree | e3d9fef8199d4d17dd20b50aa5ed3582b918b091 /helix-core/src | |
parent | 3e078f8c7e441582089f5ef3e9631543ea00de2a (diff) |
Fix compilation.
Diffstat (limited to 'helix-core/src')
-rw-r--r-- | helix-core/src/state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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) }); |