kitty/kittens/choose/subseq_matcher.pyi
2023-01-09 16:47:42 +05:30

9 lines
261 B
Python

from typing import List, Optional, Tuple
def match(
lines: List[bytes], levels: Tuple[str, str, str], needle: str,
output_positions: bool, limit: int, num_threads: int, mark_before: str,
mark_after: str, delimiter: str
) -> Optional[str]:
pass