diff options
author | Blaž Hrastnik | 2021-02-21 10:04:31 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-02-21 10:04:31 +0000 |
commit | 7da6bd6a71531713c4de58b04810e32e16eb349a (patch) | |
tree | b85148f13d5f86abf484d24e3c2d93a000149845 /helix-view/src/editor.rs | |
parent | 7877647cf0812380623b0087fbd7bea0ee9fae20 (diff) |
commands: Simplify some code, only calling cx.doc() once.
Diffstat (limited to 'helix-view/src/editor.rs')
-rw-r--r-- | helix-view/src/editor.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 52285bf8..24cd8ef9 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -54,8 +54,7 @@ impl Editor { } let view = View::new(doc)?; - let id = self.tree.insert(view); - self.tree.get_mut(id).id = id; + self.tree.insert(view); Ok(()) } |