vim: Register backquote object (#25502)

Closes #25496

Release Notes:

- vim: Fixed operations on backtick quotes
This commit is contained in:
5brian
2025-02-24 15:33:17 -07:00
committed by GitHub
parent e5b97a5e48
commit bbb8d63de0
+3
View File
@@ -303,6 +303,9 @@ pub fn register(editor: &mut Editor, cx: &mut Context<Vim>) {
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)
});