]> git.eshelyaron.com Git - emacs.git/commit
Fix wrong capture in typescript-ts-mode (bug#60167)
authorTheodor Thornhill <theo@thornhill.no>
Sat, 17 Dec 2022 19:07:59 +0000 (20:07 +0100)
committerYuan Fu <casouri@gmail.com>
Sun, 18 Dec 2022 00:30:46 +0000 (16:30 -0800)
commit5b2e6d04ce271cca2de944f8f5c07c005da33e37
treefaff636d065879783fbe7ee6a77e2c6b7906ebb6
parentcb8ccdd26702606710258e2e08bd1fc35bbc1674
Fix wrong capture in typescript-ts-mode (bug#60167)

An example of the issue could be:

    <Menu.Item>
        {({ active }) => (
          link
            ? <Link to={link}> {text}</Link>
            : <a href="#" onClick={onClick}>{text}</a>
        )}
    </Menu.Item>

Here 'link' as well as a lot of the other constructs inside of the
parenthesized expression will be font-locked with
'font-lock-variable-name-face'.  We only want to capture the
identifier.

* lisp/progmodes/typescript-ts-mode.el
(typescript-ts-mode--font-lock-settings): Make the variable capture
only capture the identifier, and not the whole expression.
lisp/progmodes/typescript-ts-mode.el