commit 12c1b5913ab94232a7fea528c43b2eb108979c3e
parent fd3cceee44ae50396ce0832827fc3c93e9f9392d
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Sun, 30 Apr 2006 23:30:47 +0000
consistency fixes
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3459 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -61,7 +61,7 @@ CVS code -
and do_copy_text(); changes to do_cut_text(), shortcut_init(),
and do_input(). (DLR, suggested by Ken Tyler)
- Add the ability to indent and unindent all marked lines of
- text, via Meta-[ (Meta-}) and Meta-] (Meta-}). New functions
+ text, via Meta-} (Meta-]) and Meta-{ (Meta-[). New functions
do_indent_marked(), do_indent_marked_void(), and
do_unindent_marked_void(); changes to shortcut_init(). (Chris
and DLR)
diff --git a/src/nano.h b/src/nano.h
@@ -542,10 +542,10 @@ typedef struct rcoption {
#define NANO_DELETE_KEY NANO_CONTROL_D
#define NANO_BACKSPACE_KEY NANO_CONTROL_H
#define NANO_TAB_KEY NANO_CONTROL_I
-#define NANO_INDENTMARKED_KEY NANO_ALT_LCURLYBRACKET
-#define NANO_INDENTMARKED_ALTKEY NANO_ALT_LBRACKET
-#define NANO_UNINDENTMARKED_KEY NANO_ALT_RCURLYBRACKET
-#define NANO_UNINDENTMARKED_ALTKEY NANO_ALT_RBRACKET
+#define NANO_INDENTMARKED_KEY NANO_ALT_RCURLYBRACKET
+#define NANO_INDENTMARKED_ALTKEY NANO_ALT_RBRACKET
+#define NANO_UNINDENTMARKED_KEY NANO_ALT_LCURLYBRACKET
+#define NANO_UNINDENTMARKED_ALTKEY NANO_ALT_LBRACKET
#define NANO_SUSPEND_KEY NANO_CONTROL_Z
#define NANO_ENTER_KEY NANO_CONTROL_M
#define NANO_TOFILES_KEY NANO_CONTROL_T