diff --git a/ChangeLog b/ChangeLog
index b0c9dca88e8b90051233a011cc3ced9c54045ee8..42f46f7c5032d5fc64f80aa6bc97c38b892d9563 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -101,6 +101,7 @@ CVS code -
 	  (DLR and Benno Schulenberg, suggested by Benno Schulenberg)
 	- Tweak the descriptions of some shortcut keys to make them more
 	  uniform. (Benno Schulenberg, minor tweaks by DLR)
+	- Add Meta-} as an alias for Meta-]. (DLR)
   toggle_init()
 	- In the global toggle list, move the "Constant cursor position
 	  display" toggle up to after the "Use more space for editing"
diff --git a/src/global.c b/src/global.c
index d06b75b197555c474107855a79a5acdf6c8f9c3b..9adc27840d83600f83d2c06f8ceb10544e69dc45 100644
--- a/src/global.c
+++ b/src/global.c
@@ -619,7 +619,7 @@ void shortcut_init(bool unjustify)
 #ifndef NANO_TINY
     sc_init_one(&main_list, NANO_NO_KEY, N_("Find Other Bracket"),
 	IFHELP(nano_bracket_msg, FALSE), NANO_BRACKET_KEY, NANO_NO_KEY,
-	NANO_NO_KEY, VIEW, do_find_bracket);
+	NANO_BRACKET_ALTKEY, VIEW, do_find_bracket);
 
     sc_init_one(&main_list, NANO_NO_KEY, N_("Scroll Up"),
 	IFHELP(nano_scrollup_msg, FALSE), NANO_SCROLLUP_KEY,
diff --git a/src/nano.h b/src/nano.h
index c64f12f1fe1d631ea5a9fced91f638ce3f057cf1..9bb33c5108b5cdb05e8e657d27f2ff7405702293 100644
--- a/src/nano.h
+++ b/src/nano.h
@@ -458,6 +458,7 @@ typedef struct rcoption {
 #define NANO_ALT_Y 'y'
 #define NANO_ALT_Z 'z'
 #define NANO_ALT_PIPE '|'
+#define NANO_ALT_RCURLYBRACKET '}'
 
 /* Some semi-changeable keybindings; don't play with these unless you're
  * sure you know what you're doing.  Assume ERR is defined as -1. */
@@ -549,6 +550,7 @@ typedef struct rcoption {
 #define NANO_PREVFILE_ALTKEY	NANO_ALT_COMMA
 #define NANO_NEXTFILE_ALTKEY	NANO_ALT_PERIOD
 #define NANO_BRACKET_KEY	NANO_ALT_RBRACKET
+#define NANO_BRACKET_ALTKEY	NANO_ALT_RCURLYBRACKET
 #define NANO_NEXTWORD_KEY	NANO_CONTROL_SPACE
 #define NANO_PREVWORD_KEY	NANO_ALT_SPACE
 #define NANO_WORDCOUNT_KEY	NANO_ALT_D