[Webkit-unassigned] [Bug 204184] Difficult to match { } when the block is longer than a screen

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Nov 14 09:59:19 PST 2019


https://bugs.webkit.org/show_bug.cgi?id=204184

Devin Rousso <drousso at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |drousso at apple.com

--- Comment #2 from Devin Rousso <drousso at apple.com> ---
We could do something _really_ simple, like add a small vertical line next to the gutter for the lines that have matching braces.  It's a single CSS rule too!

```
    .CodeMirror .CodeMirror-lines .CodeMirror-matchingbracket::before {
        position: absolute;
        left: 0;
        width: 2px;
        height: 100%;
        content: "";
        background-color: hsla(226, 77%, 65%);
    }
```

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20191114/9a2e22fa/attachment.htm>


More information about the webkit-unassigned mailing list