##// END OF EJS Templates
Update prompt config for pysh profile.
Thomas Kluyver -
Show More
@@ -5,11 +5,11 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 = r'\C_LightGreen\u@\h\C_LightBlue[\C_LightCyan\Y1\C_LightBlue]\C_Green|\#> '
8 c.PromptManager.in_template = r'{color.LightGreen}\u@\h{color.LightBlue}[{color.LightCyan}\Y1{color.LightBlue}]{color.Green}|\#> '
9 c.InteractiveShell.prompt_in2 = r'\C_Green|\C_LightGreen\D\C_Green> '
9 c.PromptManager.in2_template = r'{color.Green}|{color.LightGreen}\D{color.Green}> '
10 c.InteractiveShell.prompt_out = r'<\#> '
10 c.PromptManager.out_template = r'<\#> '
11
11
12 c.InteractiveShell.prompts_pad_left = True
12 c.PromptManager.justify = True
13
13
14 c.InteractiveShell.separate_in = ''
14 c.InteractiveShell.separate_in = ''
15 c.InteractiveShell.separate_out = ''
15 c.InteractiveShell.separate_out = ''
General Comments 0
You need to be logged in to leave comments. Login now