summaryrefslogtreecommitdiff
path: root/terminal-here.el
diff options
context:
space:
mode:
authorDavid Shepherd <davidshepherd7@gmail.com>2017-03-19 15:51:25 +0000
committerDavid Shepherd <davidshepherd7@gmail.com>2017-03-19 15:51:25 +0000
commit38f0aa4969dd2748b0999c4c7d50b6c26b815093 (patch)
tree5d91d0122b4db6c24592f60e69d5548598d88239 /terminal-here.el
parentUse a defcustom to control the project root function (diff)
downloademacs-terminal-here-38f0aa4969dd2748b0999c4c7d50b6c26b815093.tar.gz
Fix the Windows launch command
Diffstat (limited to 'terminal-here.el')
-rw-r--r--terminal-here.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/terminal-here.el b/terminal-here.el
index 26dabaf..54098f9 100644
--- a/terminal-here.el
+++ b/terminal-here.el
@@ -32,7 +32,7 @@
(list "open" "-a" "Terminal.app" dir))
((memq system-type '(windows-nt ms-dos cygwin))
- (list "start" "/D" dir "cmd"))
+ (list "cmd.exe" "/C" "start" "cmd.exe"))
;; Probably X11!
(t '("x-terminal-emulator"))))