branch: elpa/paredit
commit 3ab28ecd15596063a30299c15b9e6a1c1c372e04
Author: Taylor R Campbell <[email protected]>
Commit: Taylor R Campbell <[email protected]>
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!
---
NEWS | 1 -
paredit.el | 3 ---
2 files changed, 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)"))