Added code names for parentheses, brackets and braces.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2010-06-15 11:22:19 +04:00
parent dfe9bc887a
commit 936bb2e5f0

View File

@ -180,6 +180,12 @@ const key_code_name_t key_name_conv_tab[] = {
{ (int) '_', "underline", N_("Underline"), "_" },
{ (int) '_', "understrike", N_("Understrike"), "_" },
{ (int) '|', "pipe", N_("Pipe"), "|" },
{ (int) '(', "lparenthese", N_("Left parenthese"), "(" },
{ (int) ')', "rparenthese", N_("Right parenthese"), ")" },
{ (int) '[', "lbracket", N_("Left bracket"), "[" },
{ (int) ']', "rbracket", N_("Right bracket"), "]" },
{ (int) '{', "lbrace", N_("Left brace"), "{" },
{ (int) '}', "rbrace", N_("Right brace"), "}" },
{ (int) '\n', "enter", N_("Enter"), "Enter" },
{ (int) '\t', "tab", N_("Tab key"), "Tab" },
{ (int) ' ', "space", N_("Space key"), "Space" },