diff options
| -rw-r--r-- | ravi-init-navigation.el | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/ravi-init-navigation.el b/ravi-init-navigation.el index 5da6353..ad8f11d 100644 --- a/ravi-init-navigation.el +++ b/ravi-init-navigation.el @@ -99,17 +99,18 @@ ;; Marking and moving lines -(bind-key - "M-j" - (lambda () - (interactive) - (join-line -1)) +(defun ravi/pull-up-a-line() + "Pull up the next line" + (interactive) + (join-line -1) ) +(bind-key "M-j" 'ravi/pull-up-a-line) + (use-package move-lines :bind (("<C-S-down>" . move-lines-down) - ("<C-S-up>" . move-lines-up) - ) + ("<C-S-up>" . move-lines-up) + ) ) ;; grep and friends @@ -128,7 +129,9 @@ (bind-key "M-O" 'isearch-moccur-all isearch-mode-map)) :config - (use-package moccur-edit) + (use-package moccur-edit +; :ensure t + ) :ensure t ) |
