You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Source mode / ACE options: only a fixed set of sourceEditorNativeOptions (theme, mode, wrap, showGutter, highlightActiveLine) was applied to the ACE editor β any other native option, such as fontSize, tabSize or useSoftTabs, was silently dropped, so sourceEditorNativeOptions: { fontSize: '30px' } had no effect. The whole options object is now forwarded to ACE's editor.setOptions(), and the type accepts arbitrary native keys. Fixes #1285.