Textobjects: provide mappings for all swap/goto functions

This commit is contained in:
Stephan Seitz 2020-08-02 19:35:52 +02:00
parent 1642e37499
commit e629efafd8
4 changed files with 116 additions and 54 deletions

View file

@ -86,8 +86,12 @@ local builtin_modules = {
return has_some_textobject_mapping(lang) or queries.has_textobjects(lang)
end,
keymaps = {},
swap_next_keymaps = {},
swap_previous_keymaps = {}
swap_next = {},
swap_previous = {},
goto_next_start = {},
goto_next_end = {},
goto_previous_start = {},
goto_previous_end = {}
}
}