##// END OF EJS Templates
Inspect continuation prompt signature and pass only viable arguments. (#14274)...
Inspect continuation prompt signature and pass only viable arguments. (#14274) Closes #14273

File last commit:

r28566:d379f51c
r28567:59eccb24 merge
Show More
cwd_prompt.py
22 lines | 584 B | text/x-python | PythonLexer
Matthias Bussonnier
Add some documentation on how to configure prompts.
r22430 """This is an example that shows how to create new prompts for IPython
"""
from IPython.terminal.prompts import Prompts, Token
import os
class MyPrompt(Prompts):
Matthias Bussonnier
Include reviews from `@tornaria`
r28557 def in_prompt_tokens(self):
Matthias Bussonnier
please linter
r28566 return [(Token, os.getcwd()), (Token.Prompt, ">>>")]
Matthias Bussonnier
Include reviews from `@tornaria`
r28557
Matthias Bussonnier
Add some documentation on how to configure prompts.
r22430
def load_ipython_extension(shell):
new_prompts = MyPrompt(shell)
new_prompts.old_prompts = shell.prompts
shell.prompts = new_prompts
def unload_ipython_extension(shell):
if not hasattr(shell.prompts, 'old_prompts'):
print("cannot unload")
else:
shell.prompts = shell.prompts.old_prompts