##// END OF EJS Templates
Fix option's default value and docstring
Thomas Kluyver -
Show More
@@ -527,10 +527,10 b' class Completer(Configurable):'
527 527 'information for experimental jedi integration.')\
528 528 .tag(config=True)
529 529
530 backslash_combining_completions = Bool(default=True,
531 help="Control whether or not `\\thins<tab>` will attempt to rewrite using unicode"
532 "that include completion of latex commands, unicode, or re-expand "
533 "unicode to their ascii form").tag(config=True)
530 backslash_combining_completions = Bool(True,
531 help="Enable unicode completions, e.g. \\alpha<tab> . "
532 "Includes completion of latex commands, unicode names, and expanding "
533 "unicode characters back to latex commands.").tag(config=True)
534 534
535 535
536 536
General Comments 0
You need to be logged in to leave comments. Login now