| Index: third_party/WebKit/Source/devtools/front_end/text_editor/CodeMirrorTextEditor.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/text_editor/CodeMirrorTextEditor.js b/third_party/WebKit/Source/devtools/front_end/text_editor/CodeMirrorTextEditor.js
|
| index 8ed13e4d5501f5f6fb64369ec40b19af5ffe8ad8..e75110ccc8fb48f135640e38bc4dc1fb7b07d7b9 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/text_editor/CodeMirrorTextEditor.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/text_editor/CodeMirrorTextEditor.js
|
| @@ -112,6 +112,14 @@ TextEditor.CodeMirrorTextEditor = class extends UI.VBox {
|
| 'Ctrl-Right': 'moveCamelRight',
|
| 'Ctrl-A': 'goLineLeft',
|
| 'Ctrl-E': 'goLineRight',
|
| + 'Ctrl-B': 'goCharLeft',
|
| + 'Ctrl-F': 'goCharRight',
|
| + 'Ctrl-Alt-B': 'goGroupLeft',
|
| + 'Ctrl-Alt-F': 'goGroupRight',
|
| + 'Ctrl-H': 'delCharBefore',
|
| + 'Ctrl-D': 'delCharAfter',
|
| + 'Ctrl-K': 'killLine',
|
| + 'Ctrl-T': 'transposeChars',
|
| 'Shift-Ctrl-Left': 'selectCamelLeft',
|
| 'Shift-Ctrl-Right': 'selectCamelRight',
|
| 'Cmd-Left': 'goLineStartSmart',
|
|
|