diff options
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/commands.rs | 1 | ||||
-rw-r--r-- | helix-term/src/ui/editor.rs | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index edc38a48..36edde4c 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -942,7 +942,6 @@ pub fn yank(cx: &mut Context) { // TODO: should selections be made end inclusive? let doc = cx.doc(); let values = doc - .state .selection() .fragments(doc.text().slice(..)) .map(|cow| cow.into_owned()) diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index 68f25830..abdbb7a3 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -209,7 +209,6 @@ impl EditorView { for selection in view .doc - .state .selection() .ranges() .iter() |