diff --git a/ChangeLog b/ChangeLog
index 7036bd452a52902b167b55906958d89fc2f1d851..ebacaefad928258d03c2e5077472060b7ad250d3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,7 @@
 	* src/global.c (sctofunc): Rewrite the loop, and constify the input.
 	* src/text.c (do_linter): Condense the exit code.
 	* src/nano.c (allow_sigwinch): Improve its name and its comments.
+	* src/global.c (shortcut_init): Add "Tab" as key description.
 
 2016-01-04  Mike Frysinger  <vapier@gentoo.org>
 	* src/global.c (strtosc, strtomenu): Constify the input parameter.
diff --git a/src/global.c b/src/global.c
index e4a13280c0fb13d1ff5311e13143d90963d8369c..cba27a0cf79f78972c38a219392f91d11a9b4780 100644
--- a/src/global.c
+++ b/src/global.c
@@ -1225,6 +1225,7 @@ void shortcut_init(void)
     add_to_sclist(MHELP, "End", do_last_line, 0);
 #endif
     add_to_sclist(MMOST, "^I", do_tab, 0);
+    add_to_sclist(MMOST, "Tab", do_tab, 0);
     add_to_sclist(MMOST, "^M", do_enter, 0);
     add_to_sclist(MMOST, "Enter", do_enter, 0);
     add_to_sclist(MMOST, "^D", do_delete, 0);