this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

mouse: enable button motion tracking and any motion

Zellij doesn't support any motion at time of this commit, so we also try
to enable button motion first

+7 -4
+7 -4
src/ctlseqs.zig
··· 12 12 pub const kitty_graphics_query = "\x1b_Gi=1,a=q\x1b\\"; 13 13 pub const sixel_geometry_query = "\x1b[?2;1;0S"; 14 14 15 - // mouse 16 - pub const mouse_set = "\x1b[?1003;1004;1006h"; 17 - pub const mouse_set_pixels = "\x1b[?1003;1004;1016h"; 18 - pub const mouse_reset = "\x1b[?1003;1004;1006;1016l"; 15 + // mouse. We try for button motion and any motion. terminals will enable the 16 + // last one we tried (any motion). This was added because zellij doesn't 17 + // support any motion currently 18 + // See: https://github.com/zellij-org/zellij/issues/1679 19 + pub const mouse_set = "\x1b[?1002;1003;1004;1006h"; 20 + pub const mouse_set_pixels = "\x1b[?1002;1003;1004;1016h"; 21 + pub const mouse_reset = "\x1b[?1002;1003;1004;1006;1016l"; 19 22 20 23 // sync 21 24 pub const sync_set = "\x1b[?2026h";