##// END OF EJS Templates
doc: document that labels must have a dot in them to have an effect...
doc: document that labels must have a dot in them to have an effect I noticed that the `hg topics` template has a bare `topic` label with no dot, and that makes it useless, as such a label will never receive any effect by the colour extension. This dot has been required for a long time, at least since 2011, but we never formally documented it!

File last commit:

r51654:2c34c9b6 default
r52283:92c77659 default
Show More
_types.py
6 lines | 126 B | text/x-python | PythonLexer
from typing import Any, Callable, Tuple
# Type annotations
ParseFloat = Callable[[str], Any]
Key = Tuple[str, ...]
Pos = int