##// END OF EJS Templates
Incidental correction to config file.
Thomas Kluyver -
Show More
@@ -5,9 +5,9 b' app = c.InteractiveShellApp'
5 # and merge it into the current one.
5 # and merge it into the current one.
6 load_subconfig('ipython_config.py', profile='default')
6 load_subconfig('ipython_config.py', profile='default')
7
7
8 c.InteractiveShell.prompt_in1 = '\C_LightGreen\u@\h\C_LightBlue[\C_LightCyan\Y1\C_LightBlue]\C_Green|\#> '
8 c.InteractiveShell.prompt_in1 = r'\C_LightGreen\u@\h\C_LightBlue[\C_LightCyan\Y1\C_LightBlue]\C_Green|\#> '
9 c.InteractiveShell.prompt_in2 = '\C_Green|\C_LightGreen\D\C_Green> '
9 c.InteractiveShell.prompt_in2 = r'\C_Green|\C_LightGreen\D\C_Green> '
10 c.InteractiveShell.prompt_out = '<\#> '
10 c.InteractiveShell.prompt_out = r'<\#> '
11
11
12 c.InteractiveShell.prompts_pad_left = True
12 c.InteractiveShell.prompts_pad_left = True
13
13
@@ -27,4 +27,4 b' lines = """'
27 if hasattr(app, 'exec_lines'):
27 if hasattr(app, 'exec_lines'):
28 app.exec_lines.append(lines)
28 app.exec_lines.append(lines)
29 else:
29 else:
30 app.exec_lines = [lines] No newline at end of file
30 app.exec_lines = [lines]
General Comments 0
You need to be logged in to leave comments. Login now