Skip to content

Commit

Permalink
lispy.el: remove obsolete aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
abo-abo committed Jan 27, 2015
1 parent fb29bfe commit 5e9874e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ some of the dedicated commands:
Key Binding | Description
----------------|-----------------------------------------------------------
<kbd>]</kbd> | `lispy-forward` - move to the end of the closest list, analogous to <kbd>C-M-n</kbd> (`forward-list`)
`&#91;` | `lispy-backward` - move to the start of the closest list, analogous to <kbd>C-M-p</kbd> (`backward-list`)
<kbd>&#91;</kbd>| `lispy-backward` - move to the start of the closest list, analogous to <kbd>C-M-p</kbd> (`backward-list`)
<kbd>C-3</kbd> | `lispy-right` - exit current list forwards, analogous to `up-list`
<kbd>)</kbd> | `lispy-right-nostring` exit current list forwards, but self-insert in strings and comments

Expand Down
2 changes: 1 addition & 1 deletion lispy-pkg.el
Original file line number Diff line number Diff line change
@@ -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")
Expand Down
9 changes: 1 addition & 8 deletions lispy.el
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

;; Author: Oleh Krehel <[email protected]>
;; 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
Expand Down Expand Up @@ -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."
Expand Down

0 comments on commit 5e9874e

Please sign in to comment.