in src/pathpicker/screen_control.py [0:0]
def get_short_nav_usage_string(self) -> str:
nav_options = [
SHORT_NAV_OPTION_SELECTION_STR,
SHORT_NAV_OPTION_NAVIGATION_STR,
SHORT_NAV_OPTION_OPEN_STR,
SHORT_NAV_OPTION_QUICK_SELECT_STR,
SHORT_NAV_OPTION_COMMAND_STR,
]
# it does not make sense to give the user the option to "open" the selection
# in all-input mode
if self.flags.get_all_input():
nav_options.remove(SHORT_NAV_OPTION_OPEN_STR)
return ", ".join(nav_options)