vim: Register backquote object (#25502)

Closes #25496

Release Notes:

- vim: Fixed operations on backtick quotes
This commit is contained in:
5brian 2025-02-24 17:33:17 -05:00 committed by GitHub
parent e5b97a5e48
commit bbb8d63de0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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)
});