summaryrefslogtreecommitdiffstats
path: root/examples/full-screen/simple-demos
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 04:45:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 04:45:14 +0000
commit5b43aaac61ac94abe722bc98ae58468618f2f512 (patch)
tree3d58c89faa23d194f83abb24ae1fd05067538fff /examples/full-screen/simple-demos
parentAdding upstream version 3.0.43. (diff)
downloadprompt-toolkit-upstream.tar.xz
prompt-toolkit-upstream.zip
Adding upstream version 3.0.46.upstream/3.0.46upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'examples/full-screen/simple-demos')
-rwxr-xr-xexamples/full-screen/simple-demos/alignment.py1
-rwxr-xr-xexamples/full-screen/simple-demos/autocompletion.py1
-rwxr-xr-xexamples/full-screen/simple-demos/colorcolumn.py1
-rwxr-xr-xexamples/full-screen/simple-demos/cursorcolumn-cursorline.py1
-rwxr-xr-xexamples/full-screen/simple-demos/float-transparency.py1
-rwxr-xr-xexamples/full-screen/simple-demos/floats.py1
-rwxr-xr-xexamples/full-screen/simple-demos/focus.py1
-rwxr-xr-xexamples/full-screen/simple-demos/horizontal-align.py1
-rwxr-xr-xexamples/full-screen/simple-demos/horizontal-split.py1
-rwxr-xr-xexamples/full-screen/simple-demos/line-prefixes.py1
-rwxr-xr-xexamples/full-screen/simple-demos/margins.py1
-rwxr-xr-xexamples/full-screen/simple-demos/vertical-align.py1
-rwxr-xr-xexamples/full-screen/simple-demos/vertical-split.py1
13 files changed, 13 insertions, 0 deletions
diff --git a/examples/full-screen/simple-demos/alignment.py b/examples/full-screen/simple-demos/alignment.py
index b20b43d..10a8044 100755
--- a/examples/full-screen/simple-demos/alignment.py
+++ b/examples/full-screen/simple-demos/alignment.py
@@ -2,6 +2,7 @@
"""
Demo of the different Window alignment options.
"""
+
from prompt_toolkit.application import Application
from prompt_toolkit.key_binding import KeyBindings
from prompt_toolkit.layout.containers import HSplit, Window, WindowAlign
diff --git a/examples/full-screen/simple-demos/autocompletion.py b/examples/full-screen/simple-demos/autocompletion.py
index bcbb594..f041637 100755
--- a/examples/full-screen/simple-demos/autocompletion.py
+++ b/examples/full-screen/simple-demos/autocompletion.py
@@ -6,6 +6,7 @@ completion.
Important is to make sure that there is a `CompletionsMenu` in the layout,
otherwise the completions won't be visible.
"""
+
from prompt_toolkit.application import Application
from prompt_toolkit.buffer import Buffer
from prompt_toolkit.completion import WordCompleter
diff --git a/examples/full-screen/simple-demos/colorcolumn.py b/examples/full-screen/simple-demos/colorcolumn.py
index 054aa44..184b997 100755
--- a/examples/full-screen/simple-demos/colorcolumn.py
+++ b/examples/full-screen/simple-demos/colorcolumn.py
@@ -2,6 +2,7 @@
"""
Colorcolumn example.
"""
+
from prompt_toolkit.application import Application
from prompt_toolkit.buffer import Buffer
from prompt_toolkit.key_binding import KeyBindings
diff --git a/examples/full-screen/simple-demos/cursorcolumn-cursorline.py b/examples/full-screen/simple-demos/cursorcolumn-cursorline.py
index 505b3ee..a6eb5e6 100755
--- a/examples/full-screen/simple-demos/cursorcolumn-cursorline.py
+++ b/examples/full-screen/simple-demos/cursorcolumn-cursorline.py
@@ -2,6 +2,7 @@
"""
Cursorcolumn / cursorline example.
"""
+
from prompt_toolkit.application import Application
from prompt_toolkit.buffer import Buffer
from prompt_toolkit.key_binding import KeyBindings
diff --git a/examples/full-screen/simple-demos/float-transparency.py b/examples/full-screen/simple-demos/float-transparency.py
index 4dc38fc..a7a88c2 100755
--- a/examples/full-screen/simple-demos/float-transparency.py
+++ b/examples/full-screen/simple-demos/float-transparency.py
@@ -2,6 +2,7 @@
"""
Example of the 'transparency' attribute of `Window' when used in a Float.
"""
+
from prompt_toolkit.application import Application
from prompt_toolkit.formatted_text import HTML
from prompt_toolkit.key_binding import KeyBindings
diff --git a/examples/full-screen/simple-demos/floats.py b/examples/full-screen/simple-demos/floats.py
index 0d45be9..4d79c2b 100755
--- a/examples/full-screen/simple-demos/floats.py
+++ b/examples/full-screen/simple-demos/floats.py
@@ -2,6 +2,7 @@
"""
Horizontal split example.
"""
+
from prompt_toolkit.application import Application
from prompt_toolkit.key_binding import KeyBindings
from prompt_toolkit.layout.containers import Float, FloatContainer, Window
diff --git a/examples/full-screen/simple-demos/focus.py b/examples/full-screen/simple-demos/focus.py
index 9fe9b8f..fbf965e 100755
--- a/examples/full-screen/simple-demos/focus.py
+++ b/examples/full-screen/simple-demos/focus.py
@@ -2,6 +2,7 @@
"""
Demonstration of how to programmatically focus a certain widget.
"""
+
from prompt_toolkit.application import Application
from prompt_toolkit.buffer import Buffer
from prompt_toolkit.document import Document
diff --git a/examples/full-screen/simple-demos/horizontal-align.py b/examples/full-screen/simple-demos/horizontal-align.py
index bb0de12..038823a 100755
--- a/examples/full-screen/simple-demos/horizontal-align.py
+++ b/examples/full-screen/simple-demos/horizontal-align.py
@@ -2,6 +2,7 @@
"""
Horizontal align demo with HSplit.
"""
+
from prompt_toolkit.application import Application
from prompt_toolkit.formatted_text import HTML
from prompt_toolkit.key_binding import KeyBindings
diff --git a/examples/full-screen/simple-demos/horizontal-split.py b/examples/full-screen/simple-demos/horizontal-split.py
index 0427e67..660cd57 100755
--- a/examples/full-screen/simple-demos/horizontal-split.py
+++ b/examples/full-screen/simple-demos/horizontal-split.py
@@ -2,6 +2,7 @@
"""
Horizontal split example.
"""
+
from prompt_toolkit.application import Application
from prompt_toolkit.key_binding import KeyBindings
from prompt_toolkit.layout.containers import HSplit, Window
diff --git a/examples/full-screen/simple-demos/line-prefixes.py b/examples/full-screen/simple-demos/line-prefixes.py
index b52cb48..687d436 100755
--- a/examples/full-screen/simple-demos/line-prefixes.py
+++ b/examples/full-screen/simple-demos/line-prefixes.py
@@ -6,6 +6,7 @@ completion.
Important is to make sure that there is a `CompletionsMenu` in the layout,
otherwise the completions won't be visible.
"""
+
from prompt_toolkit.application import Application
from prompt_toolkit.buffer import Buffer
from prompt_toolkit.filters import Condition
diff --git a/examples/full-screen/simple-demos/margins.py b/examples/full-screen/simple-demos/margins.py
index 467492d..b60ce0c 100755
--- a/examples/full-screen/simple-demos/margins.py
+++ b/examples/full-screen/simple-demos/margins.py
@@ -5,6 +5,7 @@ Example of Window margins.
This is mainly used for displaying line numbers and scroll bars, but it could
be used to display any other kind of information as well.
"""
+
from prompt_toolkit.application import Application
from prompt_toolkit.buffer import Buffer
from prompt_toolkit.key_binding import KeyBindings
diff --git a/examples/full-screen/simple-demos/vertical-align.py b/examples/full-screen/simple-demos/vertical-align.py
index 1475d71..13b8504 100755
--- a/examples/full-screen/simple-demos/vertical-align.py
+++ b/examples/full-screen/simple-demos/vertical-align.py
@@ -2,6 +2,7 @@
"""
Vertical align demo with VSplit.
"""
+
from prompt_toolkit.application import Application
from prompt_toolkit.formatted_text import HTML
from prompt_toolkit.key_binding import KeyBindings
diff --git a/examples/full-screen/simple-demos/vertical-split.py b/examples/full-screen/simple-demos/vertical-split.py
index b48d106..2f4b66f 100755
--- a/examples/full-screen/simple-demos/vertical-split.py
+++ b/examples/full-screen/simple-demos/vertical-split.py
@@ -2,6 +2,7 @@
"""
Vertical split example.
"""
+
from prompt_toolkit.application import Application
from prompt_toolkit.key_binding import KeyBindings
from prompt_toolkit.layout.containers import VSplit, Window