[issue29287] IDLE needs syntax highlighting for f-strings

2017-01-31 Thread Terry J. Reedy
Terry J. Reedy added the comment: This is 3 related but somewhat distinct proposals. 1. Special handling (normal syntax colorizing) of f-expressions (the grammatical term used at https://docs.python.org/3/reference/lexical_analysis.html#formatted-string-literals). 2. Brace matching within

[issue29287] IDLE needs syntax highlighting for f-strings

2017-01-17 Thread Peter Otten
Changes by Peter Otten <__pete...@web.de>: -- nosy: +peter.otten ___ Python tracker ___ ___ Python-bugs-list

[issue29287] IDLE needs syntax highlighting for f-strings

2017-01-16 Thread Raymond Hettinger
New submission from Raymond Hettinger: Follow the lead from Vim, MagicPython, and PyCharm. Needs separate colorization to make the expression distinct from the rest of the string. Needs close-brace matching. Would be desirable to have autocompletion as well.