vim: Add Ctrl-w ] and Ctrl-w Ctrl-] keymaps (#31990)

Closes #31989

Release Notes:

- Added support for `Ctrl-w ]` and `Ctrl-w Ctrl-]` to go to a definition
in a new split
This commit is contained in:
Alejandro Fernández Gómez 2025-06-04 17:47:42 +02:00 committed by GitHub
parent 6de37fa57c
commit 89743117c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -198,6 +198,8 @@
"9": ["vim::Number", 9],
"ctrl-w d": "editor::GoToDefinitionSplit",
"ctrl-w g d": "editor::GoToDefinitionSplit",
"ctrl-w ]": "editor::GoToDefinitionSplit",
"ctrl-w ctrl-]": "editor::GoToDefinitionSplit",
"ctrl-w shift-d": "editor::GoToTypeDefinitionSplit",
"ctrl-w g shift-d": "editor::GoToTypeDefinitionSplit",
"ctrl-w space": "editor::OpenExcerptsSplit",