mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 08:26:56 +00:00
6 lines
152 B
Python
6 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
|