summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Slenders <jonathan@slenders.be>2018-06-02 17:58:00 +0200
committerJonathan Slenders <jonathan@slenders.be>2018-06-02 17:58:00 +0200
commitc0f864cf6ae5a9258192c64fcce3838bf9d294ae (patch)
tree4bfb7430014c49c59aa1d608a5ea6903843b705c
parentcdc2e80199c1a8afc12a7aacebb7c8a09c4fcb53 (diff)
Added no-layout.py example.
-rw-r--r--examples/full-screen/no-layout.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/full-screen/no-layout.py b/examples/full-screen/no-layout.py
new file mode 100644
index 00000000..be5c6f89
--- /dev/null
+++ b/examples/full-screen/no-layout.py
@@ -0,0 +1,7 @@
+#!/usr/bin/env python
+"""
+An empty full screen application without layout.
+"""
+from prompt_toolkit import Application
+
+Application(full_screen=True).run()