Ace API Reference
    Preparing search index...

    Module src/ext/menu_tools/get_editor_keyboard_shortcuts

    Provides functionality to extract and format keyboard shortcuts from an Ace editor instance. Analyzes all registered command handlers and their key bindings to generate a list of available keyboard shortcuts for the current platform. Returns formatted key combinations with proper modifier key representations and handles multiple bindings per command with pipe-separated notation.

    Usage:

    var getKbShortcuts = require('ace/ext/menu_tools/get_editor_keyboard_shortcuts');
    var shortcuts = getKbShortcuts.getEditorKeybordShortcuts(editor);
    console.log(shortcuts);
    // [
    // {'command': 'selectall', 'key': 'Ctrl-A'},
    // {'command': 'copy', 'key': 'Ctrl-C|Ctrl-Insert'}
    // ]

    Functions

    getEditorKeybordShortcuts