We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e495559 + 1166650 commit f946073Copy full SHA for f946073
client/modules/IDE/components/Editor/index.jsx
@@ -208,6 +208,10 @@ class Editor extends React.Component {
208
if (/^[a-z]$/i.test(e.key) && (mode === 'css' || mode === 'javascript')) {
209
this.showHint(_cm);
210
}
211
+ if (e.key === 'Escape') {
212
+ e.preventDefault();
213
+ this._cm.getInputField().blur();
214
+ }
215
});
216
217
this._cm.getWrapperElement().style[
0 commit comments