Patch 9.0.0827
Problem: The <Home> key in tmux doesn't work when 'term' is set to "xterm".
(Dominique Pellé)
Solution: Only use '@' in a termcap key entry for "1" when ";" follows.
(closes #11429)
Files: src/term.c
*** ../vim-9.0.0826/src/term.c 2022-10-21 14:17:19.579639460 +0100
--- src/term.c 2022-11-01 22:03:47.858985160 +0000
***************
*** 5519,5526 ****
// no match for "code;*X" with "code;"
continue;
else if (termcodes[idx].code[modslen] == '@'
! && tp[modslen] != '1')
! // no match for "<Esc>[@" with "<Esc>[1"
continue;
else
{
--- 5519,5526 ----
// no match for "code;*X" with "code;"
continue;
else if (termcodes[idx].code[modslen] == '@'
! && (tp[modslen] != '1' || tp[modslen + 1]
!= ';'))
! // no match for "<Esc>[@" with "<Esc>[1;"
continue;
else
{
*** ../vim-9.0.0826/src/version.c 2022-11-01 20:33:39.991400397 +0000
--- src/version.c 2022-11-01 21:57:55.679701386 +0000
***************
*** 697,698 ****
--- 697,700 ----
{ /* Add new patch number below this line */
+ /**/
+ 827,
/**/
--
hundred-and-one symptoms of being an internet addict:
3. Your bookmark takes 15 minutes to scroll from top to bottom.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20221101220637.179E21C0739%40moolenaar.net.