cli

run_fzf

run_fzf(terms: List[str], disp_terms: Optional[List[str]])

Launches the fzf command-line fuzzy finder with a list of terms and returns

the selected term.

Parameters: terms (List[str]): A list of strings to be presented to fzf for selection.

Returns: str or None: The selected string from fzf, or None if no selection was made or if fzf encountered an error.

Raises: RuntimeError: If fzf is not installed or not found in the system PATH.