Add function to open xfce4-terminal in current directory

This commit is contained in:
Adam Goldsmith 2018-09-13 22:20:00 -04:00
parent d02cf8abcc
commit 25e226ab01
1 changed files with 4 additions and 0 deletions

View File

@ -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)