Skip to content

Commit 5e9874e

Browse files
committed
lispy.el: remove obsolete aliases
1 parent fb29bfe commit 5e9874e

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ some of the dedicated commands:
304304
Key Binding | Description
305305
----------------|-----------------------------------------------------------
306306
<kbd>]</kbd> | `lispy-forward` - move to the end of the closest list, analogous to <kbd>C-M-n</kbd> (`forward-list`)
307-
`&#91;` | `lispy-backward` - move to the start of the closest list, analogous to <kbd>C-M-p</kbd> (`backward-list`)
307+
<kbd>&#91;</kbd>| `lispy-backward` - move to the start of the closest list, analogous to <kbd>C-M-p</kbd> (`backward-list`)
308308
<kbd>C-3</kbd> | `lispy-right` - exit current list forwards, analogous to `up-list`
309309
<kbd>)</kbd> | `lispy-right-nostring` exit current list forwards, but self-insert in strings and comments
310310

Diff for: lispy-pkg.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(define-package "lispy" "0.21.0"
1+
(define-package "lispy" "0.22.0"
22
"vi-like Paredit"
33
'((helm "1.5.3")
44
(ace-jump-mode "2.0")

Diff for: lispy.el

+1-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
;; Author: Oleh Krehel <[email protected]>
66
;; URL: https://github.com/abo-abo/lispy
7-
;; Version: 0.21.0
7+
;; Version: 0.22.0
88
;; Keywords: lisp
99

1010
;; This file is not part of GNU Emacs
@@ -483,13 +483,6 @@ Return nil on failure, t otherwise."
483483
(t
484484
(lispy--out-forward arg))))
485485

486-
(define-obsolete-function-alias 'lispy-out-forward
487-
'lispy-right "0.21.0")
488-
(define-obsolete-function-alias 'lispy-out-backward
489-
'lispy-left "0.21.0")
490-
(define-obsolete-function-alias 'lispy-out-forward-nostring
491-
'lispy-right-nostring "0.21.0")
492-
493486
(defun lispy-right-nostring (arg)
494487
"Call `lispy--out-forward' with ARG unless in string or comment.
495488
Self-insert otherwise."

0 commit comments

Comments
 (0)