Sublime Forum

Syntax (Markdown) specific key binding for increase/decrease font size

#1

HI,

I’m nes to Sublime Text 3.
I.e. I use this custom key binding:

{ “keys”: [“super+option++”], “command”: “increase_font_size”,“context”:
[
{ “key”: “selector”, “operator”: “equal”, “operand”: “text.html.markdown” },
{ “key”: “selector”, “operator”: “not_equal”, “operand”: “markup.raw”, “match_all”: true }
]
},

But that doesn’t work syntax specific. Any suggestions?

Thanks
the-omh

0 Likes

#2

You can combine this into a single selector: text.html.markdown - markup.raw

0 Likes

#3

Thanks for your tipp,

but that doesn’t work.

0 Likes