From 03ebd7562e4ff82b308c4444d63856f688205abf 2017-02-28 13:27:47 From: Thomas Kluyver Date: 2017-02-28 13:27:47 Subject: [PATCH] Fix option's default value and docstring --- diff --git a/IPython/core/completer.py b/IPython/core/completer.py index 66b1d69..7c4e6e2 100644 --- a/IPython/core/completer.py +++ b/IPython/core/completer.py @@ -527,10 +527,10 @@ class Completer(Configurable): 'information for experimental jedi integration.')\ .tag(config=True) - backslash_combining_completions = Bool(default=True, - help="Control whether or not `\\thins` will attempt to rewrite using unicode" - "that include completion of latex commands, unicode, or re-expand " - "unicode to their ascii form").tag(config=True) + backslash_combining_completions = Bool(True, + help="Enable unicode completions, e.g. \\alpha . " + "Includes completion of latex commands, unicode names, and expanding " + "unicode characters back to latex commands.").tag(config=True)