We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8662189 commit b70a47bCopy full SHA for b70a47b
3 files changed
src/os_win32.c
@@ -882,6 +882,7 @@ static const struct
882
{ VK_NEXT, TRUE, 'Q', '\322', 'v', '\323', }, // PgDn
883
{ VK_INSERT,TRUE, 'R', '\324', '\325', '\326', },
884
{ VK_DELETE,TRUE, 'S', '\327', '\330', '\331', },
885
+ { VK_BACK, TRUE, 'x', 'y', 'z', '{', }, // Backspace
886
887
{ VK_SNAPSHOT,TRUE, 0, 0, 0, 'r', }, // PrtScrn
888
@@ -911,8 +912,7 @@ static const struct
911
912
{ VK_NUMPAD7,TRUE, '\366', '\367', '\370', '\371', },
913
{ VK_NUMPAD8,TRUE, '\372', '\373', '\374', '\375', },
914
// Sorry, out of number space! <negri>
- { VK_NUMPAD9,TRUE, '\376', '\377', '\377', '\367', },
915
-
+ { VK_NUMPAD9,TRUE, '\376', '\377', '|', '}', },
916
};
917
918
src/term.c
@@ -663,6 +663,7 @@ static struct builtin_term builtin_termcaps[] =
663
{K_K7, "\316\366"},
664
{K_K8, "\316\372"},
665
{K_K9, "\316\376"},
666
+ {K_BS, "\316x"},
667
# endif
668
669
# if defined(VMS) || defined(ALL_BUILTIN_TCAPS)
src/version.c
@@ -771,6 +771,8 @@ static char *(features[]) =
771
772
static int included_patches[] =
773
{ /* Add new patch number below this line */
774
+/**/
775
+ 1096,
776
/**/
777
1095,
778
0 commit comments