From 5e9874eac1efc6cdce669673f89895980b2b1575 Mon Sep 17 00:00:00 2001 From: Oleh Krehel Date: Tue, 27 Jan 2015 20:48:00 +0100 Subject: [PATCH] lispy.el: remove obsolete aliases --- README.md | 2 +- lispy-pkg.el | 2 +- lispy.el | 9 +-------- 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b63c0beb..8397f6db 100644 --- a/README.md +++ b/README.md @@ -304,7 +304,7 @@ some of the dedicated commands: Key Binding | Description ----------------|----------------------------------------------------------- ] | `lispy-forward` - move to the end of the closest list, analogous to C-M-n (`forward-list`) -`[` | `lispy-backward` - move to the start of the closest list, analogous to C-M-p (`backward-list`) +[| `lispy-backward` - move to the start of the closest list, analogous to C-M-p (`backward-list`) C-3 | `lispy-right` - exit current list forwards, analogous to `up-list` ) | `lispy-right-nostring` exit current list forwards, but self-insert in strings and comments diff --git a/lispy-pkg.el b/lispy-pkg.el index ed10a9b5..26d9e798 100644 --- a/lispy-pkg.el +++ b/lispy-pkg.el @@ -1,4 +1,4 @@ -(define-package "lispy" "0.21.0" +(define-package "lispy" "0.22.0" "vi-like Paredit" '((helm "1.5.3") (ace-jump-mode "2.0") diff --git a/lispy.el b/lispy.el index 936d104b..9e98553c 100644 --- a/lispy.el +++ b/lispy.el @@ -4,7 +4,7 @@ ;; Author: Oleh Krehel ;; URL: https://github.com/abo-abo/lispy -;; Version: 0.21.0 +;; Version: 0.22.0 ;; Keywords: lisp ;; This file is not part of GNU Emacs @@ -483,13 +483,6 @@ Return nil on failure, t otherwise." (t (lispy--out-forward arg)))) -(define-obsolete-function-alias 'lispy-out-forward - 'lispy-right "0.21.0") -(define-obsolete-function-alias 'lispy-out-backward - 'lispy-left "0.21.0") -(define-obsolete-function-alias 'lispy-out-forward-nostring - 'lispy-right-nostring "0.21.0") - (defun lispy-right-nostring (arg) "Call `lispy--out-forward' with ARG unless in string or comment. Self-insert otherwise."