##// END OF EJS Templates
Fixing misspelling on ipython_config.py.
Brian Granger -
Show More
@@ -1,146 +1,146 b''
1 #-----------------------------------------------------------------------------
1 #-----------------------------------------------------------------------------
2 # Global options
2 # Global options
3 #-----------------------------------------------------------------------------
3 #-----------------------------------------------------------------------------
4
4
5 # Global.display_banner = True
5 # Global.display_banner = True
6
6
7 # Global.classic = False
7 # Global.classic = False
8
8
9 # Global.nosep = True
9 # Global.nosep = True
10
10
11 # Set this to determine the detail of what is logged at startup.
11 # Set this to determine the detail of what is logged at startup.
12 # The default is 30 and possible values are 0,10,20,30,40,50.
12 # The default is 30 and possible values are 0,10,20,30,40,50.
13 # Global.log_level = 30
13 # Global.log_level = 30
14
14
15 # This should be a list of importable Python modules that have an
15 # This should be a list of importable Python modules that have an
16 # load_in_ipython(ip) method. This method gets called when the extension
16 # load_in_ipython(ip) method. This method gets called when the extension
17 # is loaded. You can put your extensions anywhere they can be imported
17 # is loaded. You can put your extensions anywhere they can be imported
18 # but we add the extensions subdir of the ipython directory to sys.path
18 # but we add the extensions subdir of the ipython directory to sys.path
19 # during extension loading, so you can put them there as well.
19 # during extension loading, so you can put them there as well.
20 # Global.extensions = [
20 # Global.extensions = [
21 # 'myextension'
21 # 'myextension'
22 # ]
22 # ]
23
23
24 # These lines are run in IPython in the user's namespace after extensions
24 # These lines are run in IPython in the user's namespace after extensions
25 # are loaded. They can contain full IPython syntax with magics etc.
25 # are loaded. They can contain full IPython syntax with magics etc.
26 # Global.exec_lines = [
26 # Global.exec_lines = [
27 # 'import numpy',
27 # 'import numpy',
28 # 'a = 10; b = 20',
28 # 'a = 10; b = 20',
29 # '1/0'
29 # '1/0'
30 # ]
30 # ]
31
31
32 # These files are run in IPython in the user's namespace. Files with a .py
32 # These files are run in IPython in the user's namespace. Files with a .py
33 # extension need to be pure Python. Files with a .ipy extension can have
33 # extension need to be pure Python. Files with a .ipy extension can have
34 # custom IPython syntax (like magics, etc.).
34 # custom IPython syntax (like magics, etc.).
35 # These files need to be in the cwd, the ipythondir or be absolute paths.
35 # These files need to be in the cwd, the ipythondir or be absolute paths.
36 # Global.exec_files = [
36 # Global.exec_files = [
37 # 'mycode.py',
37 # 'mycode.py',
38 # 'fancy.ipy'
38 # 'fancy.ipy'
39 # ]
39 # ]
40
40
41 #-----------------------------------------------------------------------------
41 #-----------------------------------------------------------------------------
42 # InteractiveShell options
42 # InteractiveShell options
43 #-----------------------------------------------------------------------------
43 #-----------------------------------------------------------------------------
44
44
45
45
46 # InteractiveShell.autocall = 1
46 # InteractiveShell.autocall = 1
47
47
48 # InteractiveShell.autoedit_syntax = False
48 # InteractiveShell.autoedit_syntax = False
49
49
50 # InteractiveShell.autoindent = True
50 # InteractiveShell.autoindent = True
51
51
52 # InteractiveShell.automagic = False
52 # InteractiveShell.automagic = False
53
53
54 # InteractiveShell.banner1 = 'This if for overriding the default IPython banner'
54 # InteractiveShell.banner1 = 'This if for overriding the default IPython banner'
55
55
56 # InteractiveShell.banner2 = "This is for extra banner text"
56 # InteractiveShell.banner2 = "This is for extra banner text"
57
57
58 # InteractiveShell.cache_size = 1000
58 # InteractiveShell.cache_size = 1000
59
59
60 # InteractiveShell.colors = 'LightBG'
60 # InteractiveShell.colors = 'LightBG'
61
61
62 # InteractiveShell.color_info = True
62 # InteractiveShell.color_info = True
63
63
64 # InteractiveShell.confirm_exit = True
64 # InteractiveShell.confirm_exit = True
65
65
66 # InteractiveShell.deep_reload = False
66 # InteractiveShell.deep_reload = False
67
67
68 # InteractiveShell.editor = 'nano'
68 # InteractiveShell.editor = 'nano'
69
69
70 # InteractiveShell.logstart = True
70 # InteractiveShell.logstart = True
71
71
72 # InteractiveShell.logfile = 'ipython_log.py'
72 # InteractiveShell.logfile = 'ipython_log.py'
73
73
74 # InteractiveShell.logplay = 'mylog.py'
74 # InteractiveShell.logplay = 'mylog.py'
75
75
76 # InteractiveShell.object_info_string_level = 0
76 # InteractiveShell.object_info_string_level = 0
77
77
78 # InteractiveShell.pager = 'less'
78 # InteractiveShell.pager = 'less'
79
79
80 # InteractiveShell.pdb = False
80 # InteractiveShell.pdb = False
81
81
82 # InteractiveShell.pprint = True
82 # InteractiveShell.pprint = True
83
83
84 # InteractiveShell.prompt_in1 = 'In [\#]: '
84 # InteractiveShell.prompt_in1 = 'In [\#]: '
85 # InteractiveShell.prompt_in2 = ' .\D.: '
85 # InteractiveShell.prompt_in2 = ' .\D.: '
86 # InteractiveShell.prompt_out = 'Out[\#]: '
86 # InteractiveShell.prompt_out = 'Out[\#]: '
87 # InteractiveShell.prompts_pad_left = True
87 # InteractiveShell.prompts_pad_left = True
88
88
89 # InteractiveShell.quiet = False
89 # InteractiveShell.quiet = False
90
90
91 # Readline
91 # Readline
92 # InteractiveShell.readline_use = True
92 # InteractiveShell.readline_use = True
93
93
94 # InteractiveShell.readline_parse_and_bind = [
94 # InteractiveShell.readline_parse_and_bind = [
95 # 'tab: complete',
95 # 'tab: complete',
96 # '"\C-l": possible-completions',
96 # '"\C-l": possible-completions',
97 # 'set show-all-if-ambiguous on',
97 # 'set show-all-if-ambiguous on',
98 # '"\C-o": tab-insert',
98 # '"\C-o": tab-insert',
99 # '"\M-i": " "',
99 # '"\M-i": " "',
100 # '"\M-o": "\d\d\d\d"',
100 # '"\M-o": "\d\d\d\d"',
101 # '"\M-I": "\d\d\d\d"',
101 # '"\M-I": "\d\d\d\d"',
102 # '"\C-r": reverse-search-history',
102 # '"\C-r": reverse-search-history',
103 # '"\C-s": forward-search-history',
103 # '"\C-s": forward-search-history',
104 # '"\C-p": history-search-backward',
104 # '"\C-p": history-search-backward',
105 # '"\C-n": history-search-forward',
105 # '"\C-n": history-search-forward',
106 # '"\e[A": history-search-backward',
106 # '"\e[A": history-search-backward',
107 # '"\e[B": history-search-forward',
107 # '"\e[B": history-search-forward',
108 # '"\C-k": kill-line',
108 # '"\C-k": kill-line',
109 # '"\C-u": unix-line-discard',
109 # '"\C-u": unix-line-discard',
110 # ]
110 # ]
111 # InteractiveShell.readline_remove_delims = '-/~'
111 # InteractiveShell.readline_remove_delims = '-/~'
112 # InteractiveShell.readline_merge_completions = True
112 # InteractiveShell.readline_merge_completions = True
113 # InteractiveShell.readline_omit_names = 0
113 # InteractiveShell.readline_omit_names = 0
114
114
115 # InteractiveShell.screen_length = 0
115 # InteractiveShell.screen_length = 0
116
116
117 # InteractiveShell.separate_in = '\n'
117 # InteractiveShell.separate_in = '\n'
118 # InteractiveShell.separate_out = ''
118 # InteractiveShell.separate_out = ''
119 # InteractiveShell.separate_out2 = ''
119 # InteractiveShell.separate_out2 = ''
120
120
121 # InteractiveShell.system_header = "IPython system call: "
121 # InteractiveShell.system_header = "IPython system call: "
122
122
123 # InteractiveShell.system_verbose = True
123 # InteractiveShell.system_verbose = True
124
124
125 # InteractiveShell.term_title = False
125 # InteractiveShell.term_title = False
126
126
127 # InteractiveShell.wildcards_case_sensitive = True
127 # InteractiveShell.wildcards_case_sensitive = True
128
128
129 # InteractiveShell.xmode = 'Context'
129 # InteractiveShell.xmode = 'Context'
130
130
131 #-----------------------------------------------------------------------------
131 #-----------------------------------------------------------------------------
132 # PrefilterManager options
132 # PrefilterManager options
133 #-----------------------------------------------------------------------------
133 #-----------------------------------------------------------------------------
134
134
135 # PrefilterManager.multi_line_specials = True
135 # PrefilterManager.multi_line_specials = True
136
136
137 #-----------------------------------------------------------------------------
137 #-----------------------------------------------------------------------------
138 # AliasManager options
138 # AliasManager options
139 #-----------------------------------------------------------------------------
139 #-----------------------------------------------------------------------------
140
140
141 # Do this to enable all defaults
141 # Do this to enable all defaults
142 # AliasManager.default_aliases = []
142 # AliasManager.default_aliases = []
143
143
144 # AliasManger.user_aliases = [
144 # AliasManager.user_aliases = [
145 # ('foo', 'echo Hi')
145 # ('foo', 'echo Hi')
146 # ] No newline at end of file
146 # ]
General Comments 0
You need to be logged in to leave comments. Login now