Skip to content

Commit eed3a5e

Browse files
By default: hide signatures and parenthesis highlighting.
1 parent 27a19e2 commit eed3a5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ptpython/python_input.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def __init__(self,
154154
self._extra_buffer_processors = _extra_buffer_processors or []
155155

156156
# Settings.
157-
self.show_signature = True
157+
self.show_signature = False
158158
self.show_docstring = False
159159
self.show_meta_enter_message = True
160160
self.completion_visualisation = CompletionVisualisation.MULTI_COLUMN
@@ -179,7 +179,7 @@ def __init__(self,
179179
# history on the records starting
180180
# with the current input.
181181

182-
self.highlight_matching_parenthesis = True
182+
self.highlight_matching_parenthesis = False
183183
self.show_sidebar = False # Currently show the sidebar.
184184
self.show_sidebar_help = True # When the sidebar is visible, also show the help text.
185185
self.show_exit_confirmation = False # Currently show 'Do you really want to exit?'

0 commit comments

Comments
 (0)