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 3ddfa7c commit 3ae648bCopy full SHA for 3ae648b
src/inquirer/render/console/_list.py
@@ -61,7 +61,7 @@ def get_options(self):
61
symbol = "+" if choice == GLOBAL_OTHER_CHOICE else self.theme.List.selection_cursor
62
else:
63
color = self.theme.List.unselected_color
64
- symbol = " "
+ symbol = " " if choice == GLOBAL_OTHER_CHOICE else " " * len(self.theme.List.selection_cursor)
65
yield choice, symbol, color
66
67
def process_input(self, pressed):
0 commit comments