comparison src/libvterm/include/vterm.h @ 31192:dcde141f2d1e v9.0.0930

patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug Commit: https://github.com/vim/vim/commit/63a2e360cca2c70ab0a85d14771d3259d4b3aafa Author: Bram Moolenaar <Bram@vim.org> Date: Wed Nov 23 20:20:18 2022 +0000 patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug Problem: Cannot debug the Kitty keyboard protocol with TermDebug. Solution: Add Kitty keyboard protocol support to the libvterm fork. Recognize the escape sequences that the protocol generates. Add the 'keyprotocol' option to allow the user to specify for which terminal what protocol is to be used, instead of hard-coding this. Add recognizing the kitty keyboard protocol status.
author Bram Moolenaar <Bram@vim.org>
date Wed, 23 Nov 2022 21:30:04 +0100
parents bf4f25d50fdd
children b13f723a7ec6
comparison
equal deleted inserted replaced
31191:b8c6d994ce31 31192:dcde141f2d1e
366 366
367 /* This too */ 367 /* This too */
368 size_t vterm_output_read(VTerm *vt, char *buffer, size_t len); 368 size_t vterm_output_read(VTerm *vt, char *buffer, size_t len);
369 369
370 int vterm_is_modify_other_keys(VTerm *vt); 370 int vterm_is_modify_other_keys(VTerm *vt);
371 int vterm_is_kitty_keyboard(VTerm *vt);
371 void vterm_keyboard_unichar(VTerm *vt, uint32_t c, VTermModifier mod); 372 void vterm_keyboard_unichar(VTerm *vt, uint32_t c, VTermModifier mod);
372 void vterm_keyboard_key(VTerm *vt, VTermKey key, VTermModifier mod); 373 void vterm_keyboard_key(VTerm *vt, VTermKey key, VTermModifier mod);
373 374
374 void vterm_keyboard_start_paste(VTerm *vt); 375 void vterm_keyboard_start_paste(VTerm *vt);
375 void vterm_keyboard_end_paste(VTerm *vt); 376 void vterm_keyboard_end_paste(VTerm *vt);