I’m a new user of Sublime Text 3, having finally given up with Notepad++.
I’ve installed the Oracle PL/SQL package to help with some XML DB development.
The issue I have is that some of the literal strings need to be single quoted and others need to be double quoted.
For example,
SELECT
XMLelement(“BusinessType”, ‘B74’)
FROM dual;
In ST3, both single and double quoted strings are displayed in the same colour, yellow.
I’ve got pages and pages of Oracle XML queries to sift through and it would be hugely convenient to have single and double quoted strings displayed in different colours.
At the moment all strings are in yellow.
I couldn’t see how to set this in the PL/XML package.
I found the following configuration in the Monokai.sublime-color-scheme settings.
{
“name”: “String”,
“scope”: “string”,
“foreground”: “var(yellow)”
},
Is it possible to distinguish between single and double quoted strings, and if so, can they be set to different colours?