
Release Notes: - vim: Added a setting to control default clipboard behaviour. `{"vim": {"use_system_clipboard": "never"}}` disables writing to the clipboard. `"on_yank"` writes to the system clipboard only on yank, and `"always"` preserves the current behavior. ([#4390 ](https://github.com/zed-industries/zed/issues/4390)) --------- Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
50 lines
2.3 KiB
Rust
50 lines
2.3 KiB
Rust
use crate::{motion::Motion, object::Object, utils::yank_selections_content, Vim};
|
|
use collections::HashMap;
|
|
use gpui::WindowContext;
|
|
|
|
pub fn yank_motion(vim: &mut Vim, motion: Motion, times: Option<usize>, cx: &mut WindowContext) {
|
|
vim.update_active_editor(cx, |vim, editor, cx| {
|
|
let text_layout_details = editor.text_layout_details(cx);
|
|
editor.transact(cx, |editor, cx| {
|
|
editor.set_clip_at_line_ends(false, cx);
|
|
let mut original_positions: HashMap<_, _> = Default::default();
|
|
editor.change_selections(None, cx, |s| {
|
|
s.move_with(|map, selection| {
|
|
let original_position = (selection.head(), selection.goal);
|
|
original_positions.insert(selection.id, original_position);
|
|
motion.expand_selection(map, selection, times, true, &text_layout_details);
|
|
});
|
|
});
|
|
yank_selections_content(vim, editor, motion.linewise(), cx);
|
|
editor.change_selections(None, cx, |s| {
|
|
s.move_with(|_, selection| {
|
|
let (head, goal) = original_positions.remove(&selection.id).unwrap();
|
|
selection.collapse_to(head, goal);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
pub fn yank_object(vim: &mut Vim, object: Object, around: bool, cx: &mut WindowContext) {
|
|
vim.update_active_editor(cx, |vim, editor, cx| {
|
|
editor.transact(cx, |editor, cx| {
|
|
editor.set_clip_at_line_ends(false, cx);
|
|
let mut original_positions: HashMap<_, _> = Default::default();
|
|
editor.change_selections(None, cx, |s| {
|
|
s.move_with(|map, selection| {
|
|
let original_position = (selection.head(), selection.goal);
|
|
object.expand_selection(map, selection, around);
|
|
original_positions.insert(selection.id, original_position);
|
|
});
|
|
});
|
|
yank_selections_content(vim, editor, false, cx);
|
|
editor.change_selections(None, cx, |s| {
|
|
s.move_with(|_, selection| {
|
|
let (head, goal) = original_positions.remove(&selection.id).unwrap();
|
|
selection.collapse_to(head, goal);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}
|