File: system-prompt.py

package info (click to toggle)
prompt-toolkit 3.0.51-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 6,232 kB
  • sloc: python: 30,894; makefile: 151; sh: 6
file content (20 lines) | stat: -rwxr-xr-x 741 bytes parent folder | download | duplicates (2)
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}")