From 25e226ab01b3183df05336ff763d761e4341513d Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Thu, 13 Sep 2018 22:20:00 -0400 Subject: [PATCH] Add function to open xfce4-terminal in current directory --- .emacs.d/init.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index f0ab462..8a0d62a 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -24,6 +24,10 @@ (interactive) (call-process "thunar" nil 0 nil ".")) +(defun open-term-in-current-directory () + (interactive) + (call-process "xfce4-terminal" nil 0 nil)) + ;;;; enable disabled functions (put 'upcase-region 'disabled nil) (put 'downcase-region 'disabled nil)