Title: [286792] trunk/Source/WebInspectorUI
Revision
286792
Author
[email protected]
Date
2021-12-09 11:39:43 -0800 (Thu, 09 Dec 2021)

Log Message

Web Inspector: Enable fuzzy matching for CSS completions
https://bugs.webkit.org/show_bug.cgi?id=234092

Reviewed by Patrick Angle.

Flip the flag to enable fuzzy matching when autocompleting CSS properties and values.

* UserInterface/Base/Setting.js:

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (286791 => 286792)


--- trunk/Source/WebInspectorUI/ChangeLog	2021-12-09 19:12:44 UTC (rev 286791)
+++ trunk/Source/WebInspectorUI/ChangeLog	2021-12-09 19:39:43 UTC (rev 286792)
@@ -1,3 +1,14 @@
+2021-12-09  Razvan Caliman  <[email protected]>
+
+        Web Inspector: Enable fuzzy matching for CSS completions
+        https://bugs.webkit.org/show_bug.cgi?id=234092
+
+        Reviewed by Patrick Angle.
+
+        Flip the flag to enable fuzzy matching when autocompleting CSS properties and values.
+
+        * UserInterface/Base/Setting.js:
+
 2021-12-07  Razvan Caliman  <[email protected]>
 
         Web Inspector: Support fuzzy matching in CSS completions

Modified: trunk/Source/WebInspectorUI/UserInterface/Base/Setting.js (286791 => 286792)


--- trunk/Source/WebInspectorUI/UserInterface/Base/Setting.js	2021-12-09 19:12:44 UTC (rev 286791)
+++ trunk/Source/WebInspectorUI/UserInterface/Base/Setting.js	2021-12-09 19:39:43 UTC (rev 286792)
@@ -231,7 +231,7 @@
     experimentalEnableStylesJumpToVariableDeclaration: new WI.Setting("experimental-styles-jump-to-variable-declaration", false),
     experimentalCollapseBlackboxedCallFrames: new WI.Setting("experimental-collapse-blackboxed-call-frames", false),
     experimentalAllowInspectingInspector: new WI.Setting("experimental-allow-inspecting-inspector", false),
-    experimentalCSSCompletionFuzzyMatching: new WI.Setting("experimental-css-completion-fuzzy-matching", false),
+    experimentalCSSCompletionFuzzyMatching: new WI.Setting("experimental-css-completion-fuzzy-matching", true),
 
     // Protocol
     protocolLogAsText: new WI.Setting("protocol-log-as-text", false),
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to