def get_hovered_paths()

in src/pathpicker/screen_control.py [0:0]


    def get_hovered_paths(self) -> List[LineMatch]:
        return [
            line_obj
            for index, line_obj in enumerate(self.line_matches)
            if index == self.hover_index
        ]