Files
emacs/lisp
Theodor Thornhill 5b2e6d04ce 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.
2022-12-17 16:30:46 -08:00
..
2022-11-24 14:27:51 +01:00
2022-12-08 07:17:47 +01:00
2022-11-21 15:20:11 +01:00
2022-12-17 14:24:16 -08:00
2022-11-18 16:02:19 +01:00
2022-12-17 17:28:27 -05:00
2022-12-16 14:55:02 -08:00
2022-11-20 12:59:39 +01:00
2022-11-18 16:02:19 +01:00
2022-12-13 18:44:41 +01:00
2022-12-16 08:29:28 +01:00
2022-12-16 08:29:28 +01:00
2022-12-08 07:17:47 +01:00
2022-11-28 19:47:35 +02:00
2022-12-15 02:35:00 +01:00
2022-11-18 16:02:19 +01:00
2022-11-18 16:02:19 +01:00
2022-10-30 09:40:06 -04:00
2022-11-15 19:48:39 +08:00
2022-12-16 08:29:28 +01:00
2022-12-17 14:53:19 -08:00
2022-11-18 16:02:19 +01:00
2022-12-17 14:24:16 -08:00
2022-12-15 05:11:35 +01:00
2022-11-20 12:59:39 +01:00
2022-11-18 16:02:19 +01:00
2022-12-01 20:15:52 +02:00
2022-12-13 01:46:44 +01:00
2022-11-18 16:02:19 +01:00
2022-12-16 08:29:28 +01:00
2022-12-03 15:39:43 +01:00
2022-12-16 16:29:51 +02:00
2022-11-21 15:20:11 +01:00
2022-11-26 11:05:58 +01:00
2022-11-18 13:06:55 +01:00

This directory contains source code for the parts of Emacs that are
written in Emacs Lisp.  *.el files are Emacs Lisp source, and the
corresponding *.elc files are byte-compiled versions.  Byte-compiled
files are architecture-independent.

The term subdirectory contains Lisp files that customize Emacs for
certain terminal types.  When Emacs starts, it checks the TERM
environment variable to get the terminal type and loads
'term/${TERM}.el' if it exists.

The other subdirectories hold Lisp packages grouped by their general
purpose.