allDefinitionKeymap top-level property

List<KeyBinding> allDefinitionKeymap
final

Combined keymap for all definition-related navigation.

  • F12: Go to Definition
  • Mod-b: Go to Definition (VSCode style)
  • Mod-F12: Go to Type Definition
  • Ctrl-F12: Go to Implementation
  • Shift-F12: Find References

Implementation

final List<KeyBinding> allDefinitionKeymap = [
  ...gotoDefinitionKeymap,
  ...gotoTypeDefinitionKeymap,
  ...gotoImplementationKeymap,
  ...findReferencesKeymap,
];