From 8638e42135913acfd195b13224d60a877349e628 Mon Sep 17 00:00:00 2001 From: pagedown Date: Fri, 27 Jan 2023 23:15:13 +0800 Subject: [PATCH] Revert "Fix #5937" This reverts commit 4b322560c398e704d402a0b46a19afad24e50bdd. Only two arguments are required to create a marker. --- kitty/rc/create_marker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/rc/create_marker.py b/kitty/rc/create_marker.py index 0abfcf1f5..4391c0ddb 100644 --- a/kitty/rc/create_marker.py +++ b/kitty/rc/create_marker.py @@ -29,7 +29,7 @@ class CreateMarker(RemoteCommand): type=bool-set Apply marker to the window this command is run in, rather than the active window. ''' - args = RemoteCommand.Args(spec='MARKER SPECIFICATION', json_field='marker_spec', minimum_count=3) + args = RemoteCommand.Args(spec='MARKER SPECIFICATION', json_field='marker_spec', minimum_count=2) def message_to_kitty(self, global_opts: RCOptions, opts: 'CLIOptions', args: ArgsType) -> PayloadType: if len(args) < 2: