From bbb8d63de0ca6bc75460075d0d84c6c243531e9a Mon Sep 17 00:00:00 2001 From: 5brian Date: Mon, 24 Feb 2025 17:33:17 -0500 Subject: [PATCH] vim: Register backquote object (#25502) Closes #25496 Release Notes: - vim: Fixed operations on backtick quotes --- crates/vim/src/object.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/vim/src/object.rs b/crates/vim/src/object.rs index 0251f4d564d72006344c2f1e7c6deb5fab3d8657..2120df91afad18a715878302e5d0bc502799d3d2 100644 --- a/crates/vim/src/object.rs +++ b/crates/vim/src/object.rs @@ -303,6 +303,9 @@ pub fn register(editor: &mut Editor, cx: &mut Context) { Vim::action(editor, cx, |vim, _: &Quotes, window, cx| { vim.object(Object::Quotes, window, cx) }); + Vim::action(editor, cx, |vim, _: &BackQuotes, window, cx| { + vim.object(Object::BackQuotes, window, cx) + }); Vim::action(editor, cx, |vim, _: &AnyQuotes, window, cx| { vim.object(Object::AnyQuotes, window, cx) });