-
Notifications
You must be signed in to change notification settings - Fork 185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[NFR] Uppercase keywords #84
Comments
👍 |
1 similar comment
👍 |
Cool! |
Until I hear back from @jdorn, here's my changes: Line 144: public static $uppercase = true; Line 692: if(self::$uppercase && in_array($token[self::TOKEN_TYPE],array(self::TOKEN_TYPE_RESERVED,self::TOKEN_TYPE_RESERVED_NEWLINE,self::TOKEN_TYPE_RESERVED_TOPLEVEL))){
$highlighted = strtoupper($highlighted);
} |
That looks fine if you want to create a pull request. Just make sure |
Request made: #86 |
👍 awesome |
Just wanted to add my 2 cents here... Why not just add CSS classes instead of inline styles? Then not only could this be accomplished in CSS, but changing colors could be done easily without modifying the codebase. I'd also like to add backticks to the queries... classes would solve that as well. |
I have patched my local copy to automatically uppercase any reserved keywords. So a submitted query like:
Gets formatted into
Is there any interest in me making a full pull request of this functionality?
The text was updated successfully, but these errors were encountered: