mirror of
https://github.com/kovidgoyal/kitty.git
synced 2024-11-11 01:28:19 +03:00
15 lines
322 B
Python
15 lines
322 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[Segment],
|
|
bg_highlight: Optional[Segment]
|
|
) -> List[str]:
|
|
pass
|
|
|
|
|
|
def changed_center(left_prefix: str, right_postfix: str) -> Tuple[int, int]:
|
|
pass
|