File tree 3 files changed +3
-10
lines changed
3 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ some of the dedicated commands:
304
304
Key Binding | Description
305
305
----------------|-----------------------------------------------------------
306
306
<kbd >] </kbd > | ` lispy-forward ` - move to the end of the closest list, analogous to <kbd >C-M-n</kbd > (` forward-list ` )
307
- ` [ ` | ` lispy-backward ` - move to the start of the closest list, analogous to <kbd >C-M-p</kbd > (` backward-list ` )
307
+ < kbd > [ ; </ kbd > | ` lispy-backward ` - move to the start of the closest list, analogous to <kbd >C-M-p</kbd > (` backward-list ` )
308
308
<kbd >C-3</kbd > | ` lispy-right ` - exit current list forwards, analogous to ` up-list `
309
309
<kbd >)</kbd > | ` lispy-right-nostring ` exit current list forwards, but self-insert in strings and comments
310
310
Original file line number Diff line number Diff line change 1
- (define-package " lispy" " 0.21 .0"
1
+ (define-package " lispy" " 0.22 .0"
2
2
" vi-like Paredit"
3
3
'((helm " 1.5.3" )
4
4
(ace-jump-mode " 2.0" )
Original file line number Diff line number Diff line change 4
4
5
5
;; Author: Oleh Krehel <ohwoeowho@gmail.com>
6
6
;; URL: https://github.com/abo-abo/lispy
7
- ;; Version: 0.21 .0
7
+ ;; Version: 0.22 .0
8
8
;; Keywords: lisp
9
9
10
10
;; This file is not part of GNU Emacs
@@ -483,13 +483,6 @@ Return nil on failure, t otherwise."
483
483
(t
484
484
(lispy--out-forward arg))))
485
485
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
-
493
486
(defun lispy-right-nostring (arg)
494
487
"Call `lispy--out-forward' with ARG unless in string or comment.
495
488
Self-insert otherwise."
You can’t perform that action at this time.
0 commit comments