aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul LeoNerd Evans <leonerd@leonerd.org.uk>2011-08-28 17:57:57 +0100
committerPaul LeoNerd Evans <leonerd@leonerd.org.uk>2011-08-28 17:57:57 +0100
commit8793934328f40f79a634a05d8ba815f9b7bcd749 (patch)
treedf25896beb6bca6b2f27b800c53e163104f57c47
parent26384996486963bc2f097f44a82a5c07e0dfe69e (diff)
downloadtermo-8793934328f40f79a634a05d8ba815f9b7bcd749.tar.gz
termo-8793934328f40f79a634a05d8ba815f9b7bcd749.tar.xz
termo-8793934328f40f79a634a05d8ba815f9b7bcd749.zip
Allow a flag to convert ASCII DEL into Backspace
-rw-r--r--t/20canon.c18
-rw-r--r--termkey.c6
-rw-r--r--termkey.h.in1
-rw-r--r--termkey_canonicalise.33
4 files changed, 27 insertions, 1 deletions
diff --git a/t/20canon.c b/t/20canon.c
index eccf2c6..35f84e2 100644
--- a/t/20canon.c
+++ b/t/20canon.c
@@ -9,7 +9,7 @@ int main(int argc, char *argv[])
#define CLEAR_KEY do { key.type = -1; key.code.codepoint = -1; key.modifiers = -1; key.utf8[0] = 0; } while(0)
- plan_tests(18);
+ plan_tests(26);
tk = termkey_new(0, TERMKEY_FLAG_NOTERMIOS);
@@ -45,6 +45,22 @@ int main(int argc, char *argv[])
is_int(key.modifiers, 0, "key.modifiers for Space/symbol");
is_str(endp, "", "consumed entire input for Space/symbol");
+ CLEAR_KEY;
+ endp = termkey_strpkey(tk, "DEL", &key, 0);
+ is_int(key.type, TERMKEY_TYPE_KEYSYM, "key.type for Del/unconverted");
+ is_int(key.code.sym, TERMKEY_SYM_DEL, "key.code.codepoint for Del/unconverted");
+ is_int(key.modifiers, 0, "key.modifiers for Del/unconverted");
+ is_str(endp, "", "consumed entire input for Del/unconverted");
+
+ termkey_set_canonflags(tk, termkey_get_canonflags(tk) | TERMKEY_CANON_DELBS);
+
+ CLEAR_KEY;
+ endp = termkey_strpkey(tk, "DEL", &key, 0);
+ is_int(key.type, TERMKEY_TYPE_KEYSYM, "key.type for Del/as-backspace");
+ is_int(key.code.sym, TERMKEY_SYM_BACKSPACE, "key.code.codepoint for Del/as-backspace");
+ is_int(key.modifiers, 0, "key.modifiers for Del/as-backspace");
+ is_str(endp, "", "consumed entire input for Del/as-backspace");
+
termkey_destroy(tk);
return exit_status();
diff --git a/termkey.c b/termkey.c
index 37c2690..573bd44 100644
--- a/termkey.c
+++ b/termkey.c
@@ -610,6 +610,12 @@ void termkey_canonicalise(TermKey *tk, TermKeyKey *key)
fill_utf8(key);
}
}
+
+ if(flags & TERMKEY_CANON_DELBS) {
+ if(key->type == TERMKEY_TYPE_KEYSYM && key->code.sym == TERMKEY_SYM_DEL) {
+ key->code.sym = TERMKEY_SYM_BACKSPACE;
+ }
+ }
}
static TermKeyResult peekkey(TermKey *tk, TermKeyKey *key, int force, size_t *nbytep)
diff --git a/termkey.h.in b/termkey.h.in
index 8c58eea..a3dbab2 100644
--- a/termkey.h.in
+++ b/termkey.h.in
@@ -151,6 +151,7 @@ enum {
enum {
TERMKEY_CANON_SPACESYMBOL = 1 << 0, // Space is symbolic rather than Unicode
+ TERMKEY_CANON_DELBS = 1 << 1, // Del is converted to Backspace
};
void termkey_check_version(int major, int minor);
diff --git a/termkey_canonicalise.3 b/termkey_canonicalise.3
index eda0fdc..980e400 100644
--- a/termkey_canonicalise.3
+++ b/termkey_canonicalise.3
@@ -16,6 +16,9 @@ The canonicalisation operation is affected by the following flags:
.TP
.B TERMKEY_CANON_SPACESYMBOL
If this flag is set then a Unicode space character is represented using the \fBTERMKEY_SYM_SPACE\fP symbol. If this flag is not set, it is represented by the U+0020 Unicode codepoint.
+.TP
+.B TERMKEY_CANON_DELBS
+If this flag is set then an ASCII DEL character is represented by the \fBTERMKEY_SYM_BACKSPACE\fP symbol. If not, it is represented by \fBTERMKEY_SYM_DEL\fP. An ASCII BS character is always represented by \fBTERMKEY_SYM_BACKSPACE\fP, regardless of this flag.
.SH "RETURN VALUE"
\fBtermkey_canonicalise\fP() returns no value.
.SH "SEE ALSO"