From cb549e36a5c750e38046409b1e17da255290e560 Mon Sep 17 00:00:00 2001 From: Ravi R Kiran Date: Fri, 27 Dec 2013 20:43:09 -0800 Subject: Use a real named function instead of a lambda 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 (("" . move-lines-down) - ("" . move-lines-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 ) -- cgit v0.10.1