Start work on DnD protocol

This commit is contained in:
Kovid Goyal
2026-03-05 19:43:05 +05:30
parent 4483a6c110
commit 2898324047
9 changed files with 228 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ if kitty_src not in sys.path:
from kitty.conf.types import Definition, expand_opt_references # noqa
from kitty.constants import str_version, website_url # noqa
from kitty.fast_data_types import Shlex, TEXT_SIZE_CODE # noqa
from kitty.fast_data_types import DND_CODE, Shlex, TEXT_SIZE_CODE # noqa
# config {{{
# -- Project information -----------------------------------------------------
@@ -121,6 +121,7 @@ string_replacements = {
'_kitty_install_cmd': 'curl -L https://sw.kovidgoyal.net/kitty/installer.sh | sh /dev/stdin',
'_build_go_version': go_version('../go.mod'),
'_text_size_code': str(TEXT_SIZE_CODE),
'_dnd_code': str(DND_CODE),
}