kitty/kittens/diff/diff_speedup.pyi
2020-03-04 07:49:28 +05:30

15 lines
308 B
Python

from typing import List, Optional, Tuple
from .collect import Segment
def split_with_highlights(
line: str, truncate_points: List[int], fg_highlights: List,
bg_highlight: Optional[Segment]
) -> List:
pass
def changed_center(left_prefix: str, right_postfix: str) -> Tuple[int, int]:
pass