From: Craig Roy <CraigR63@gmail.com> Date: Fri, 27 Feb 2015 02:41:42 +0000 (+0000) Subject: Added backspace as a special character for mapping X-Git-Url: https://git.owens.tech/projects.html/projects.html/git?a=commitdiff_plain;h=c91ba6ba0e4203767b9b9d643d376648f108c9b4;p=vimb.git Added backspace as a special character for mapping --- diff --git a/src/map.c b/src/map.c index e7455d6..a9fad55 100644 --- a/src/map.c +++ b/src/map.c @@ -93,6 +93,7 @@ static struct { {"<S-Tab>", 7, CSI_STR "kB", 3}, {"<Esc>", 5, "\x1b", 1}, {"<Space>", 7, "\x20", 1}, + {"<BS>", 4, "\x08", 1}, {"<Up>", 4, CSI_STR "ku", 3}, {"<Down>", 6, CSI_STR "kd", 3}, {"<Left>", 6, CSI_STR "kl", 3},