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 ee7aac4 commit 1829385Copy full SHA for 1829385
src/libtmux/constants.py
@@ -19,3 +19,16 @@ class ResizeAdjustmentDirection(enum.Enum):
19
ResizeAdjustmentDirection.Left: "-L",
20
ResizeAdjustmentDirection.Right: "-R",
21
}
22
+
23
24
+class WindowDirection(enum.Enum):
25
+ """Used for *adjustment* in :meth:`Session.new_window()`."""
26
27
+ Before = "BEFORE"
28
+ After = "AFTER"
29
30
31
+WINDOW_DIRECTION_FLAG_MAP: t.Dict[WindowDirection, str] = {
32
+ WindowDirection.Before: "-b",
33
+ WindowDirection.After: "-a",
34
+}
0 commit comments