Skip to content

Commit

Permalink
Add python fstring scintilla tokens (#470)
Browse files Browse the repository at this point in the history
* Add python fstring scintilla tokens

* Add release note
  • Loading branch information
frmdstryr committed Jan 14, 2022
1 parent 65c2a2a commit 65e9eae
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions enaml/qt/scintilla_tokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,15 +465,19 @@
"decorator": "Decorator",
"default": "Default",
"double_quoted_string": "DoubleQuotedString",
"double_quoted_fstring": "DoubleQuotedFString",
"function_method_name": "FunctionMethodName",
"highlighted_identifier": "HighlightedIdentifier",
"identifier": "Identifier",
"keyword": "Keyword",
"number": "Number",
"operator": "Operator",
"single_quoted_string": "SingleQuotedString",
"single_quoted_fstring": "SingleQuotedFString",
"triple_double_quoted_string": "TripleDoubleQuotedString",
"triple_double_quoted_fstring": "TripleDoubleQuotedFString",
"triple_single_quoted_string": "TripleSingleQuotedString",
"triple_single_quoted_fstring": "TripleSingleQuotedFString",
"unclosed_string": "UnclosedString"
},
"ruby": {
Expand Down
4 changes: 4 additions & 0 deletions releasenotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ Enaml Release Notes

Dates are written as DD/MM/YYYY

0.15.0 - Unreleased
-------------------
- Add python fstring scintilla tokens PR #470

0.14.0 - 21/11/2021
-------------------
- use enum.IntEnum/IntFlag instead of atom.IntEnum PR #453
Expand Down

0 comments on commit 65e9eae

Please sign in to comment.