roman numeral patch

This commit is contained in:
yosh 2023-01-05 11:59:51 -06:00
parent 481894147a
commit 209cca2b86
2 changed files with 41 additions and 10 deletions

20
conf.c
View File

@ -40,16 +40,16 @@ static const struct {
int num;
const char *name;
} group_binds[] = {
{ 0, "nogroup" },
{ 1, "one" },
{ 2, "two" },
{ 3, "three" },
{ 4, "four" },
{ 5, "five" },
{ 6, "six" },
{ 7, "seven" },
{ 8, "eight" },
{ 9, "nine" },
{ 0, "0" },
{ 1, "I" },
{ 2, "II" },
{ 3, "III" },
{ 4, "IV" },
{ 5, "V" },
{ 6, "VI" },
{ 7, "VII" },
{ 8, "VIII" },
{ 9, "IX" },
};
static int cursor_binds[] = {
XC_left_ptr, /* CF_NORMAL */

View File

@ -0,0 +1,31 @@
diff --git a/conf.c b/conf.c
index 7d3ae6e..68bf157 100644
--- a/conf.c
+++ b/conf.c
@@ -40,16 +40,16 @@ static const struct {
int num;
const char *name;
} group_binds[] = {
- { 0, "nogroup" },
- { 1, "one" },
- { 2, "two" },
- { 3, "three" },
- { 4, "four" },
- { 5, "five" },
- { 6, "six" },
- { 7, "seven" },
- { 8, "eight" },
- { 9, "nine" },
+ { 0, "0" },
+ { 1, "I" },
+ { 2, "II" },
+ { 3, "III" },
+ { 4, "IV" },
+ { 5, "V" },
+ { 6, "VI" },
+ { 7, "VII" },
+ { 8, "VIII" },
+ { 9, "IX" },
};
static int cursor_binds[] = {
XC_left_ptr, /* CF_NORMAL */