bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#62112: [PATCH] Add missing rust-ts-mode highlight query for scoped_t


From: Randy Taylor
Subject: bug#62112: [PATCH] Add missing rust-ts-mode highlight query for scoped_type_identifiers
Date: Sat, 11 Mar 2023 02:23:29 +0000

X-Debbugs-CC: dgutov@yandex.ru

Examples:
    match &cli.command {
        Commands::Run {
            a,
            b,
            c,
            d,
        } => todo!(),
    }

Commands should be highlighted as a type.

Likewise for:
    match msg {
        Message::Quit => {
            println!("The Quit variant has no data to destructure.");
        }
        Message::Move { x, y } => {
            println!("Move in the x direction {x} and in the y direction {y}");
        }
        Message::Write(text) => {
            println!("Text message: {text}");
        }
        Message::ChangeColor(r, g, b) => {
            println!("Change the color to red {r}, green {g}, and blue {b}",)
        }
    }

Message::Move should have Message highlighted as a type.

Attached is a patch fixing it.


Attachment: 0001-Add-missing-rust-ts-mode-highlight-query-for-scoped_.patch
Description: Text Data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]