Emacs: add function and keybinding for opening eshell in the current directory
Alan Pearce alan@alanpearce.co.uk
Sun, 02 Jun 2013 20:20:17 +0100
1 files changed, 7 insertions(+), 0 deletions(-)
jump to
M emacs/init.el → emacs/init.el
@@ -743,6 +743,13 @@ eshell-review-quick-commands nil eshell-smart-space-goes-to-end t) (eshell-smart-initialize))))) +(defun eshell-goto-current-dir (&optional arg) + (interactive "P") + (let ((dir default-directory)) + (eshell arg) + (eshell/cd dir))) +(bind-key "C-c S" #'eshell-goto-current-dir) + (use-package shell :defer t :config (define-key shell-mode-map