Bug 161536

Summary: Web Inspector: add a test to track changes to CodeMirror bindings in configurations used by WebInspectorUI
Product: WebKit Reporter: Blaze Burg <bburg>
Component: Web InspectorAssignee: Nobody <webkit-unassigned>
Status: NEW    
Severity: Normal CC: inspector-bugzilla-changes, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: All   
OS: All   

Blaze Burg
Reported 2016-09-02 10:24:26 PDT
This would make it much easier to review keybinding changes.
Attachments
Radar WebKit Bug Importer
Comment 1 2016-09-02 10:25:03 PDT
Blaze Burg
Comment 2 2016-09-02 10:26:03 PDT
You can manually collate the keybindings like so: > m = {}; cm.state.keyMaps.reverse().forEach((map) => { for (let key in map) { m[key] = map[key]; }}) > m < Object = { Alt-Backspace: function() Alt-D: function() Alt-Delete: function() ... } Then sort keys lexicographically and dump the function name using .name
Note You need to log in before you can comment on or make changes to this bug.