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 2fdfc1c commit 959cdf0Copy full SHA for 959cdf0
src/libtmux/exc.py
@@ -41,6 +41,14 @@ class UnknownOption(OptionError):
41
"""Option unknown to tmux show-option(s) or show-window-option(s)."""
42
43
44
+class UnknownColorOption(UnknownOption):
45
+
46
+ """Unknown color option."""
47
48
+ def __init__(self, *args: object):
49
+ return super().__init__("Server.colors must equal 88 or 256")
50
51
52
class InvalidOption(OptionError):
53
54
"""Option invalid to tmux, introduced in tmux v2.4."""
0 commit comments