Bug 1943909 - [devtools] Remove codemirror next preference r=devtools-reviewers,ochameau

Differential Revision: https://phabricator.services.mozilla.com/D250367
This commit is contained in:
Hubert Boma Manilla
2025-05-23 15:36:37 +00:00
committed by hmanilla@mozilla.com
parent 13ace1fa93
commit 829de4d0df
2 changed files with 0 additions and 7 deletions

View File

@@ -3166,11 +3166,6 @@ pref("devtools.debugger.show-content-scripts", false);
pref("devtools.debugger.hide-ignored-sources", false);
// When `true` the debugger editor uses Codemirror v6
// and when `false` the debugger editor uses Codemirror v5
// This should be removed once the CM5 code is cleaned up. See Bug 1943909
pref("devtools.debugger.features.codemirror-next", true);
// Disable autohide for DevTools popups and tooltips.
// This is currently not exposed by any UI to avoid making
// about:devtools-toolbox tabs unusable by mistake.

View File

@@ -60,7 +60,6 @@ if (isNode()) {
pref("devtools.debugger.features.log-points", true);
pref("devtools.debugger.features.inline-preview", true);
pref("devtools.debugger.features.javascript-tracing", false);
pref("devtools.debugger.features.codemirror-next", true);
pref("devtools.editor.tabsize", 2);
pref("devtools.editor.expandtab", false);
pref("devtools.editor.autoclosebrackets", false);
@@ -143,7 +142,6 @@ export const features = new PrefsHelper("devtools.debugger.features", {
inlinePreview: ["Bool", "inline-preview"],
windowlessServiceWorkers: ["Bool", "windowless-service-workers"],
javascriptTracing: ["Bool", "javascript-tracing"],
codemirrorNext: ["Bool", "codemirror-next"],
});
// Import the asyncStore already spawned by the TargetMixin class