comparison src/normal.c @ 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 cc0c4141fb73
children 1a9e44a45614
comparison
equal deleted inserted replaced
31191:b8c6d994ce31 31192:dcde141f2d1e
422 MAY_WANT_TO_LOG_THIS; 422 MAY_WANT_TO_LOG_THIS;
423 423
424 // Disable bracketed paste and modifyOtherKeys here, we won't 424 // Disable bracketed paste and modifyOtherKeys here, we won't
425 // recognize the escape sequences with 'esckeys' off. 425 // recognize the escape sequences with 'esckeys' off.
426 out_str(T_BD); 426 out_str(T_BD);
427 out_str(T_CTE); 427 out_str_t_TE();
428 } 428 }
429 429
430 *cp = plain_vgetc(); 430 *cp = plain_vgetc();
431 431
432 if ((State & MODE_INSERT) && !p_ek) 432 if ((State & MODE_INSERT) && !p_ek)