From 13a82d12568dc734bd92e9168ebc5489c27421ce 2008-06-23 10:33:12 From: Ville M. Vainio Date: 2008-06-23 10:33:12 Subject: [PATCH] add readline query disabling to ipy_user_conf.py template (commented out) --- 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