File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
client/modules/IDE/components/Editor Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -169,6 +169,9 @@ class Editor extends React.Component {
169
169
} ,
170
170
Enter : 'emmetInsertLineBreak' ,
171
171
Esc : 'emmetResetAbbreviation' ,
172
+ [ `Shift-${ metaKey } -E` ] : ( cm ) => {
173
+ cm . getInputField ( ) . blur ( ) ;
174
+ } ,
172
175
[ `Shift-Tab` ] : false ,
173
176
[ `${ metaKey } -Enter` ] : ( ) => null ,
174
177
[ `Shift-${ metaKey } -Enter` ] : ( ) => null ,
@@ -552,7 +555,7 @@ class Editor extends React.Component {
552
555
< section className = { editorSectionClass } >
553
556
< div className = "editor__header" >
554
557
< button
555
- aria-label = { this . props . t ( 'Editor.OpenSketchARIA ' ) }
558
+ aria-label = { this . props . t ( 'Editor.CloseSketchARIA ' ) }
556
559
className = "sidebar__contract"
557
560
onClick = { ( ) => {
558
561
this . props . collapseSidebar ( ) ;
@@ -562,7 +565,7 @@ class Editor extends React.Component {
562
565
< LeftArrowIcon focusable = "false" aria-hidden = "true" />
563
566
</ button >
564
567
< button
565
- aria-label = { this . props . t ( 'Editor.CloseSketchARIA ' ) }
568
+ aria-label = { this . props . t ( 'Editor.OpenSketchARIA ' ) }
566
569
className = "sidebar__expand"
567
570
onClick = { this . props . expandSidebar }
568
571
>
You can’t perform that action at this time.
0 commit comments