@@ -1952,7 +1952,7 @@ def delimiter_complete(
19521952 for value , display in unique_results .items ()
19531953 ]
19541954
1955- return Completions (items , allow_finalization = allow_finalization , is_delimited = True )
1955+ return Completions (items , allow_finalization = allow_finalization )
19561956
19571957 @staticmethod
19581958 def _complete_users (text : str , add_trailing_sep_if_dir : bool ) -> Completions :
@@ -1990,7 +1990,7 @@ def _complete_users(text: str, add_trailing_sep_if_dir: bool) -> Completions:
19901990
19911991 # Since all ~user matches resolve to directories, set allow_finalization to False
19921992 # so the user can continue into the subdirectory structure.
1993- return Completions (items = items , allow_finalization = False , is_delimited = True )
1993+ return Completions (items = items , allow_finalization = False )
19941994
19951995 def path_complete (
19961996 self ,
@@ -2100,7 +2100,7 @@ def path_complete(
21002100 for match , display in zip (matches , display_matches , strict = True )
21012101 ]
21022102
2103- return Completions (items = items , allow_finalization = allow_finalization , is_delimited = True )
2103+ return Completions (items = items , allow_finalization = allow_finalization )
21042104
21052105 def shell_cmd_complete (
21062106 self , text : str , line : str , begidx : int , endidx : int , * , complete_blank : bool = False
0 commit comments