summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor R Campbell <campbell@mumble.net>2013-07-08 13:38:50 +0000
committerTaylor R Campbell <campbell@mumble.net>2013-07-08 13:38:50 +0000
commit3ab28ecd15596063a30299c15b9e6a1c1c372e04 (patch)
tree296282cc65b49bc1806eff8ec1a7a20203010b3f
parent4e5ba81795e4ecad01c23b233694476d1508fa3a (diff)
Revert "Bind M-[ to paredit-wrap-square."
This reverts commit a26c148244962c1365c185dbe154118c88183575. `ESC [' is how various terminal escape sequences begin, so overriding this is a bad idea!
-rw-r--r--NEWS1
-rw-r--r--paredit.el3
2 files changed, 0 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index bf0cd08..e52586b 100644
--- a/NEWS
+++ b/NEWS
@@ -15,7 +15,6 @@ The latest version of this file is available at
** Version 24 (beta)
-*** New key binding: M-[ (paredit-wrap-square)
*** C-M-f/C-M-b (paredit-forward/paredit-backward) now move out of strings.
*** Changed M-" (paredit-meta-doublequote) to not break line, like M-).
*** New command: paredit-meta-doublequote-and-newline has old behaviour.
diff --git a/paredit.el b/paredit.el
index 0d952cd..aa449f6 100644
--- a/paredit.el
+++ b/paredit.el
@@ -392,9 +392,6 @@ Paredit behaves badly if parentheses are unbalanced, so exercise
("M-(" paredit-wrap-round
("(foo |bar baz)"
"(foo (|bar) baz)"))
- ("M-[" paredit-wrap-square
- ("(foo |bar baz)"
- "(foo [|bar] baz)"))
("M-s" paredit-splice-sexp
("(foo (bar| baz) quux)"
"(foo bar| baz quux)"))