improve highlighting
This commit is contained in:
12
highlight.py
Normal file
12
highlight.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from typing import Optional
|
||||
|
||||
from line import Line
|
||||
from highlighted_range import HighlightedRange
|
||||
|
||||
|
||||
class Highlight:
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def compute_highlight(self, line: Line) -> Optional[HighlightedRange]:
|
||||
return None
|
||||
Reference in New Issue
Block a user