M lazy-lock.json M lua/custom/configs/lspconfig.lua M lua/custom/init.lua A lua/custom/journal.lua A nvim_venv/bin/Activate.ps1 A nvim_venv/bin/activate A nvim_venv/bin/activate.csh A nvim_venv/bin/activate.fish
13 lines
304 B
Python
13 lines
304 B
Python
from typing import NamedTuple
|
|
|
|
LOOKUP_DEBUG_INFO_KEY = "com.github.fonttools.feaLib"
|
|
LOOKUP_DEBUG_ENV_VAR = "FONTTOOLS_LOOKUP_DEBUGGING"
|
|
|
|
|
|
class LookupDebugInfo(NamedTuple):
|
|
"""Information about where a lookup came from, to be embedded in a font"""
|
|
|
|
location: str
|
|
name: str
|
|
feature: list
|