Sublime Forum

Quotes highlight match

#1

Hello.

I modified my color scheme where i put settings like this:

“globals”:
{
“brackets_options”:“foreground”,
“brackets_foreground”:“var(orange)”,
“bracket_contents_options”:“foreground”,
“bracket_contents_foreground”:“var(orange)”,
“tags_options”:“foreground”,
“tags_foreground”:“var(orange)”,
},

Its works great - brackets are highlighted if they are matched of course

Now i want to do the same with single and double quotes. It is possible? In ST docs i can’t see any option like “quote_options”

BracketHighlighter sounds like a solution but i would like prefer native solution if it is possible, like in above example

0 Likes

#2

Sorry for renew my the topic, but maybe someone will see it and will know the answer? :pray:

0 Likes

#3

St does not highlight matching quotation marks, so there are no options for it.

0 Likes

#4

Really weird. I cant understand why that function not exists :rolling_eyes:
While we write thousands lines of code it’s very useful
Anyway, thanks you for answer.

0 Likes

#5

https://packagecontrol.io/packages/BracketHighlighter

        "single_quote": {
            "icon": "single_quote",
            "style": "underline"
        },
        "double_quote": {
            "icon": "single_quote",
            "style": "underline"
        },
1 Like

#6

Like i said i know BH and i use it but i was curious what about native functionality. Anyway thanks for your help

Update: Good alternative is select all between the quote tags by using Selection | Expand selection to Scope or shortcut Ctrl + Shift + Space

0 Likes