We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b3dd6d commit dceaf86Copy full SHA for dceaf86
.gitignore
@@ -45,5 +45,8 @@ docs/_build
45
# pycharm metadata
46
.idea
47
48
+# vscode metadata
49
+.vscode
50
+
51
# virtualenvs
52
.venv*
src/prompt_toolkit/shortcuts/prompt.py
@@ -1393,6 +1393,7 @@ def prompt(
1393
enable_open_in_editor: FilterOrBool | None = None,
1394
tempfile_suffix: str | Callable[[], str] | None = None,
1395
tempfile: str | Callable[[], str] | None = None,
1396
+ in_thread: bool = False,
1397
# Following arguments are specific to the current `prompt()` call.
1398
default: str = "",
1399
accept_default: bool = False,
@@ -1447,6 +1448,7 @@ def prompt(
1447
1448
default=default,
1449
accept_default=accept_default,
1450
pre_run=pre_run,
1451
+ in_thread=in_thread,
1452
)
1453
1454
0 commit comments