diff --git a/IPython/UserConfig/ipy_user_conf.py b/IPython/UserConfig/ipy_user_conf.py index 2500a18..b0184ef 100644 --- a/IPython/UserConfig/ipy_user_conf.py +++ b/IPython/UserConfig/ipy_user_conf.py @@ -92,6 +92,15 @@ def main(): # at your own risk! #import ipy_greedycompleter + # If you are on Linux, you may be annoyed by + # "Display all N possibilities? (y or n)" on tab completion, + # as well as the paging through "more". Uncomment the following + # lines to disable that behaviour + #import readline + #readline.parse_and_bind('set completion-query-items 1000') + #readline.parse_and_bind('set page-completions no') + + # some config helper functions you can use