1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#!/usr/bin/env python
from prompt_toolkit import prompt
if __name__ == "__main__":
# System prompt.
print(
"(1/3) If you press meta-! or esc-! at the following prompt, you can enter system commands."
)
answer = prompt("Give me some input: ", enable_system_prompt=True)
print(f"You said: {answer}")
# Enable suspend.
print("(2/3) If you press Control-Z, the application will suspend.")
answer = prompt("Give me some input: ", enable_suspend=True)
print(f"You said: {answer}")
# Enable open_in_editor
print("(3/3) If you press Control-X Control-E, the prompt will open in $EDITOR.")
answer = prompt("Give me some input: ", enable_open_in_editor=True)
print(f"You said: {answer}")
|