diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-06T10·08+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-06T15·25+0000 |
commit | 47d16e251221ce1cf61a588af92ae11a58e59606 (patch) | |
tree | 2263dc6368a8733a8bb73d80536e6b8c0180fd10 | |
parent | 6d87dcb710d237d35df569e4b5827eecd5a09230 (diff) |
Support lispyville KBDs
After deciding to support the `C-s-` prefix for lispyville KBDs, I'm re-introducing support for: - `lispyville-drag-backward` - `lispyville-drag-forward` - `lispyville-end-of-defun` - `lispyville-beginning-of-defun`
-rw-r--r-- | configs/shared/.emacs.d/wpc/packages/wpc-lisp.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configs/shared/.emacs.d/wpc/packages/wpc-lisp.el b/configs/shared/.emacs.d/wpc/packages/wpc-lisp.el index a8df7ddd5f41..4dff3e452902 100644 --- a/configs/shared/.emacs.d/wpc/packages/wpc-lisp.el +++ b/configs/shared/.emacs.d/wpc/packages/wpc-lisp.el @@ -75,9 +75,10 @@ "M-k" nil ;; second rebind ;; TODO: Rebind to something that doesn't conflict with window resizing. - ;; "C-M-h" #'lispyville-drag-backward - ;; "C-M-l" #'lispyville-drag-forward - ))) + "C-s-h" #'lispyville-drag-backward + "C-s-l" #'lispyville-drag-forward + "C-s-e" #'lispyville-end-of-defun + "C-s-a" #'lispyville-beginning-of-defun))) ;; deletes all bindings of f->kbd ;; binds kbd-> |