@@ -2011,7 +2011,7 @@ def delimiter_complete(
20112011 for value , display in unique_results .items ()
20122012 ]
20132013
2014- return Completions (items , allow_finalization = allow_finalization , is_delimited = True )
2014+ return Completions (items , allow_finalization = allow_finalization )
20152015
20162016 @staticmethod
20172017 def _complete_users (text : str , add_trailing_sep_if_dir : bool ) -> Completions :
@@ -2049,7 +2049,7 @@ def _complete_users(text: str, add_trailing_sep_if_dir: bool) -> Completions:
20492049
20502050 # Since all ~user matches resolve to directories, set allow_finalization to False
20512051 # so the user can continue into the subdirectory structure.
2052- return Completions (items = items , allow_finalization = False , is_delimited = True )
2052+ return Completions (items = items , allow_finalization = False )
20532053
20542054 def path_complete (
20552055 self ,
@@ -2159,7 +2159,7 @@ def path_complete(
21592159 for match , display in zip (matches , display_matches , strict = True )
21602160 ]
21612161
2162- return Completions (items = items , allow_finalization = allow_finalization , is_delimited = True )
2162+ return Completions (items = items , allow_finalization = allow_finalization )
21632163
21642164 def shell_cmd_complete (
21652165 self , text : str , line : str , begidx : int , endidx : int , * , complete_blank : bool = False
0 commit comments