mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-02-01 11:34:59 +01:00
7 lines
152 B
Python
7 lines
152 B
Python
def syntax_aliases(x: str) -> dict[str, str]:
|
|
ans = {}
|
|
for x in x.split():
|
|
k, _, v = x.partition(':')
|
|
ans[k] = v
|
|
return ans
|