all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#75012: 31.0.50; Use a different face for storage_class in c-ts-mode doxygen comments
@ 2024-12-21 18:21 Filippo Argiolas
  2024-12-21 21:18 ` Vincenzo Pupillo
  0 siblings, 1 reply; 3+ messages in thread
From: Filippo Argiolas @ 2024-12-21 18:21 UTC (permalink / raw)
  To: 75012


Hi, I was experimenting with the new local parser for doxygen comments
in c-ts-mode.

I think current syntax highlighting rules really basic and could use
some love.  One thing that would really help IMHO would be using a
different face for storage class so that e.g.

@param[in] some param

have param and [in] with two different colors. Param type is detected as
"storage_class" and that's usually fontified with font-lock-keyword-face
(e.g. like const and static in C) so I believe that would be the most
obvious choice.

I also have been experimenting with some additional rules in
c-ts-mode-doxygen-comment-font-lock-settings but they may be overkill:

   :language 'doxygen
   :override t
   :feature 'keyword
   '((tag_name) @font-lock-constant-face
     (type) @font-lock-type-face
     (emphasis) @bold
     ((tag_name) @bold (:match ".note" @bold))
     ((tag_name) @warning (:match ".warning" @warning))
     ((tag_name) @error (:match ".error" @error))
     (storageclass) @font-lock-keyword-face)

gets me something like the 'after' screenshot here[1], the 'before' now
is current faces with ef-dream theme.

What do you think?

Thanks,
Filippo


1. https://people.freedesktop.org/~fargiolas/c-ts-doxy/





In GNU Emacs 31.0.50 (build 1, aarch64-apple-darwin24.1.0, NS
 appkit-2575.20 Version 15.1.1 (Build 24B91)) of 2024-12-21 built on mba
Repository revision: 1c960bda91237c92f9f602bcb8538ad500c0bc49
Repository branch: master
Windowing system distributor 'Apple', version 10.3.2575
System Description:  macOS 15.1.1

Configured using:
 'configure --with-tree-sitter --with-native-compilation'






^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#75012: 31.0.50; Use a different face for storage_class in c-ts-mode doxygen comments
  2024-12-21 18:21 bug#75012: 31.0.50; Use a different face for storage_class in c-ts-mode doxygen comments Filippo Argiolas
@ 2024-12-21 21:18 ` Vincenzo Pupillo
  2024-12-22  6:20   ` Eli Zaretskii
  0 siblings, 1 reply; 3+ messages in thread
From: Vincenzo Pupillo @ 2024-12-21 21:18 UTC (permalink / raw)
  To: 75012; +Cc: Eli Zaretskii, Filippo Argiolas

Ciao Filippo, 
it's fine for me, even the "overkill" version.
@Eli WDYT ?

Vincenzo

In data sabato 21 dicembre 2024 19:21:29 Ora standard dell’Europa centrale, 
Filippo Argiolas ha scritto:
> Hi, I was experimenting with the new local parser for doxygen comments
> in c-ts-mode.
> 
> I think current syntax highlighting rules really basic and could use
> some love.  One thing that would really help IMHO would be using a
> different face for storage class so that e.g.
> 
> @param[in] some param
> 
> have param and [in] with two different colors. Param type is detected as
> "storage_class" and that's usually fontified with font-lock-keyword-face
> (e.g. like const and static in C) so I believe that would be the most
> obvious choice.
> 
> I also have been experimenting with some additional rules in
> 
> c-ts-mode-doxygen-comment-font-lock-settings but they may be overkill:
>    :language 'doxygen
>    :override t
>    :feature 'keyword
> 
>    '((tag_name) @font-lock-constant-face
>      (type) @font-lock-type-face
>      (emphasis) @bold
>      ((tag_name) @bold (:match ".note" @bold))
>      ((tag_name) @warning (:match ".warning" @warning))
>      ((tag_name) @error (:match ".error" @error))
>      (storageclass) @font-lock-keyword-face)
> 
> gets me something like the 'after' screenshot here[1], the 'before' now
> is current faces with ef-dream theme.
> 
> What do you think?
> 
> Thanks,
> Filippo
> 
> 
> 1. https://people.freedesktop.org/~fargiolas/c-ts-doxy/
> 
> 
> 
> 
> 
> In GNU Emacs 31.0.50 (build 1, aarch64-apple-darwin24.1.0, NS
>  appkit-2575.20 Version 15.1.1 (Build 24B91)) of 2024-12-21 built on mba
> Repository revision: 1c960bda91237c92f9f602bcb8538ad500c0bc49
> Repository branch: master
> Windowing system distributor 'Apple', version 10.3.2575
> System Description:  macOS 15.1.1
> 
> Configured using:
>  'configure --with-tree-sitter --with-native-compilation'









^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#75012: 31.0.50; Use a different face for storage_class in c-ts-mode doxygen comments
  2024-12-21 21:18 ` Vincenzo Pupillo
@ 2024-12-22  6:20   ` Eli Zaretskii
  0 siblings, 0 replies; 3+ messages in thread
From: Eli Zaretskii @ 2024-12-22  6:20 UTC (permalink / raw)
  To: Vincenzo Pupillo, Yuan Fu; +Cc: filippo.argiolas, 75012

> From: Vincenzo Pupillo <v.pupillo@gmail.com>
> Cc: Filippo Argiolas <filippo.argiolas@gmail.com>,
>  Eli Zaretskii <eliz@gnu.org>
> Date: Sat, 21 Dec 2024 22:18:08 +0100
> 
> Ciao Filippo, 
> it's fine for me, even the "overkill" version.
> @Eli WDYT ?

I don't have an opinion on this, but Yuan (CC'ed) might.





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-12-22  6:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-21 18:21 bug#75012: 31.0.50; Use a different face for storage_class in c-ts-mode doxygen comments Filippo Argiolas
2024-12-21 21:18 ` Vincenzo Pupillo
2024-12-22  6:20   ` Eli Zaretskii

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.