Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to open a cmd.exe window with the project root directory as it's current directory.

Here is my elisp code:

(defun open-cmd-and-cd-to-project-root()
  (interactive)
  (projectile-mode t)
  (cd (projectile-get-project-root))
  (shell))

It opens a cmd shell in an Emacs buffer . But I want it opens a new native cmd.exe window running in Windows rather than a buffer running in Emacs. How can I do that?

share|improve this question
can you rephrase the question ? I do not understand the question. – alinsoar Nov 22 '12 at 5:32
@alinsoar: In gvim.exe, I can open a new cmd terminal window by execute the command :!cmd . How can I do that in Emacs? – TomCaps Nov 22 '12 at 6:31
first, I never used windows of bill gates, so I do not know windows. second. "open a new cmd terminal window by execute the command :!cmd" is not a correct expression, so I have to guess. Do you want to run a command using Meta-! ? – alinsoar Nov 22 '12 at 7:19
How about M-! cmd ? – z_axis Nov 22 '12 at 7:22
z_axis: I do not understand what he wants. I also supposed that he wants "M-!". – alinsoar Nov 22 '12 at 7:24
show 4 more comments

1 Answer

up vote 1 down vote accepted

Do this:

(let ((proc (start-process "cmd" nil "cmd.exe" "/C" "start" "cmd.exe")))
  (set-process-query-on-exit-flag proc nil))

The set-process-query-on-exit-flag to nil is so it won't bother on closing emacs (we can't kill it anyway).

share|improve this answer
Thanks! It works like a charm! – TomCaps Nov 22 '12 at 9:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.