##// END OF EJS Templates
Don't warn the user if the default config file is missing....
Don't warn the user if the default config file is missing. We still warn if a custom config file is missing though.

File last commit:

r2245:38ab8d91
r2257:4b2d3098
Show More
ipython_config.py
114 lines | 3.0 KiB | text/x-python | PythonLexer
#-----------------------------------------------------------------------------
# Global options
#-----------------------------------------------------------------------------
Global.classic = False
Global.nosep = False
#-----------------------------------------------------------------------------
# InteractiveShell options
#-----------------------------------------------------------------------------
InteractiveShell.autocall = 1
InteractiveShell.autoedit_syntax = False
InteractiveShell.autoindent = True
InteractiveShell.automagic = False
InteractiveShell.banner1 = 'This if for overriding the default IPython banner'
InteractiveShell.banner2 = "This is for extra banner text"
InteractiveShell.cache_size = 1000
InteractiveShell.colors = 'LightBG'
InteractiveShell.color_info = True
InteractiveShell.confirm_exit = True
InteractiveShell.deep_reload = False
InteractiveShell.display_banner = True
InteractiveShell.editor = 'nano'
InteractiveShell.logstart = True
InteractiveShell.logfile = 'ipython_log.py'
InteractiveShell.logplay = 'mylog.py'
InteractiveShell.object_info_string_level = 0
InteractiveShell.pager = 'less'
InteractiveShell.pdb = False
InteractiveShell.pprint = True
InteractiveShell.prompt_in1 = 'In [\#]: '
InteractiveShell.prompt_in2 = ' .\D.: '
InteractiveShell.prompt_out = 'Out[\#]: '
InteractiveShell.prompts_pad_left = True
InteractiveShell.quiet = False
# Readline
InteractiveShell.readline_use = False
InteractiveShell.readline_parse_and_bind = [
'tab: complete',
'"\C-l": possible-completions',
'set show-all-if-ambiguous on',
'"\C-o": tab-insert',
'"\M-i": " "',
'"\M-o": "\d\d\d\d"',
'"\M-I": "\d\d\d\d"',
'"\C-r": reverse-search-history',
'"\C-s": forward-search-history',
'"\C-p": history-search-backward',
'"\C-n": history-search-forward',
'"\e[A": history-search-backward',
'"\e[B": history-search-forward',
'"\C-k": kill-line',
'"\C-u": unix-line-discard',
]
InteractiveShell.readline_remove_delims = '-/~'
InteractiveShell.readline_merge_completions = True
InteractiveShell.readline_omit_names = 0
InteractiveShell.screen_length = 0
InteractiveShell.separate_in = '\n'
InteractiveShell.separate_out = ''
InteractiveShell.separate_out2 = ''
InteractiveShell.system_header = "IPython system call: "
InteractiveShell.system_verbose = True
InteractiveShell.term_title = False
InteractiveShell.wildcards_case_sensitive = True
InteractiveShell.xmode = 'Context'
#-----------------------------------------------------------------------------
# PrefilterManager options
#-----------------------------------------------------------------------------
PrefilterManager.multi_line_specials = True
#-----------------------------------------------------------------------------
# AliasManager options
#-----------------------------------------------------------------------------
# Do this to enable all defaults
# AliasManager.default_aliases = []
AliasManger.user_aliases = [
('foo', 'echo Hi')
]