Changeset 286792 in webkit


Ignore:
Timestamp:
Dec 9, 2021 11:39:43 AM (7 months ago)
Author:
Razvan Caliman
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:
Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r286611 r286792  
     12021-12-09  Razvan Caliman  <rcaliman@apple.com>
     2
     3        Web Inspector: Enable fuzzy matching for CSS completions
     4        https://bugs.webkit.org/show_bug.cgi?id=234092
     5
     6        Reviewed by Patrick Angle.
     7
     8        Flip the flag to enable fuzzy matching when autocompleting CSS properties and values.
     9
     10        * UserInterface/Base/Setting.js:
     11
    1122021-12-07  Razvan Caliman  <rcaliman@apple.com>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Base/Setting.js

    r286611 r286792  
    232232    experimentalCollapseBlackboxedCallFrames: new WI.Setting("experimental-collapse-blackboxed-call-frames", false),
    233233    experimentalAllowInspectingInspector: new WI.Setting("experimental-allow-inspecting-inspector", false),
    234     experimentalCSSCompletionFuzzyMatching: new WI.Setting("experimental-css-completion-fuzzy-matching", false),
     234    experimentalCSSCompletionFuzzyMatching: new WI.Setting("experimental-css-completion-fuzzy-matching", true),
    235235
    236236    // Protocol
Note: See TracChangeset for help on using the changeset viewer.