How to have operators highlighted in different color like Sublime Text? #359
Replies: 1 comment
-
You would want to change your theme to set styles for `lexer.OPERATOR`.
By default it is unset:
https://github.com/orbitalquark/textadept/blob/96f58f1fa34fa50feead22df21b34412c1327da1/themes/light.lua#L62.
You can copy one of Textadept's default themes to your
*~/.textadept/themes/* directory, change that property, and then call
`ui.set_theme()` from your *~/.textadept/init.lua* with that theme's
name. If it's the default 'light' theme, then you don't have to do
anything; Textadept uses it automatically.
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently they are in the same color as variables, functions,...
Beta Was this translation helpful? Give feedback.
All reactions