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 228c1c0 commit 09985d5Copy full SHA for 09985d5
tests/snapshot_tests/snapshot_apps/split_segments.py
@@ -0,0 +1,14 @@
1
+from textual.app import App, ComposeResult
2
+from textual.widgets import TextArea
3
+
4
+FAIL_TEXT = "x "
5
6
7
+class CodeApp(App):
8
+ def compose(self) -> ComposeResult:
9
+ yield TextArea(FAIL_TEXT, soft_wrap=False, show_line_numbers=True)
10
11
12
+if __name__ == "__main__":
13
+ app = CodeApp()
14
+ app.run()
0 commit comments