##// END OF EJS Templates
Fix TerminalInteractiveShell.true_color docs
Reilly Tucker Siemens -
Show More
@@ -201,10 +201,12 b' class TerminalInteractiveShell(InteractiveShell):'
201 ).tag(config=True)
201 ).tag(config=True)
202
202
203 true_color = Bool(False,
203 true_color = Bool(False,
204 help=("Use 24bit colors instead of 256 colors in prompt highlighting. "
204 help="""Use 24bit colors instead of 256 colors in prompt highlighting.
205 "If your terminal supports true color, the following command "
205 If your terminal supports true color, the following command should
206 "should print 'TRUECOLOR' in orange: "
206 print ``TRUECOLOR`` in orange::
207 "printf \"\\x1b[38;2;255;100;0mTRUECOLOR\\x1b[0m\\n\"")
207
208 printf \"\\x1b[38;2;255;100;0mTRUECOLOR\\x1b[0m\\n\"
209 """,
208 ).tag(config=True)
210 ).tag(config=True)
209
211
210 editor = Unicode(get_default_editor(),
212 editor = Unicode(get_default_editor(),
General Comments 0
You need to be logged in to leave comments. Login now