diff --git a/templates/zephyr/keyboard_shortcuts.html b/templates/zephyr/keyboard_shortcuts.html
index e960267e65..35cc02cca7 100644
--- a/templates/zephyr/keyboard_shortcuts.html
+++ b/templates/zephyr/keyboard_shortcuts.html
@@ -24,7 +24,7 @@
Compose new private message |
- r |
+ Enter or r |
Respond to message |
diff --git a/zephyr/static/js/hotkey.js b/zephyr/static/js/hotkey.js
index 7adbb1bfa4..33064ac5f2 100644
--- a/zephyr/static/js/hotkey.js
+++ b/zephyr/static/js/hotkey.js
@@ -108,6 +108,7 @@ function process_hotkey(e) {
case 67: // 'C': compose huddle
compose.start('private');
return true;
+ case 13: // Enter or
case 114: // 'r': respond to message
respond_to_message();
return true;