File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -549,7 +549,7 @@ def handle_sigint(*a):
549
549
# Clean up socket.
550
550
os .remove (self .socket_name )
551
551
552
- def run_standalone (self , true_color = False ):
552
+ def run_standalone (self , true_color = False , ansi_colors_only = False ):
553
553
"""
554
554
Run pymux standalone, rather than using a client/server architecture.
555
555
This is mainly useful for debugging.
@@ -558,7 +558,8 @@ def run_standalone(self, true_color=False):
558
558
self ._start_auto_refresh_thread ()
559
559
cli = self .create_cli (
560
560
connection = None ,
561
- output = Vt100_Output .from_pty (sys .stdout , true_color = true_color ))
561
+ output = Vt100_Output .from_pty (
562
+ sys .stdout , true_color = true_color , ansi_colors_only = ansi_colors_only ))
562
563
cli ._is_running = False
563
564
cli .run ()
564
565
You can’t perform that action at this time.
0 commit comments