Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I run cmder inside atom on windows 10?

Tags:

cmder

I have install cmder and atom editor (v. 1.19.3). Also install the platformio-ide-package for atom. And I do еverything that has been described in this article - http://thebar.cc/atom-editor-cmder/, but in my atom editor ->settings missing the part with Shell Override: ... , where I can change the path. Is this is a bug on my editor? And can anyone tell me how to fix that and set the Atom editor with the Cmder console.

like image 565
Santiya Avatar asked Aug 25 '17 12:08

Santiya


4 Answers

Got it working with simply putting C:\Windows\System32\cmd.exe into Shell Override and C:\path\to\cmder\vendor\init.bat into Auto Run Command, no quotes, no nothing.

like image 75
dustypaws Avatar answered Oct 23 '22 14:10

dustypaws


It's not much of answer(I can't comment yet), but it might help.

Shell override is in: Atom Settings(or ctrl + ,) > Packages > platformio-ide-terminal > Settings. Scroll down and you will see.Shell Override

I didn't make it work yet(actually by googling found this question). If I do I'll edit this comment(Hope I can do it). I'm on Windows 7.

EDIT:

It works(win7). What I did is I removed double quotes (") around the path inside the file atom.bat. Of cause edit path to where is your cmder folder is.

like image 29
my- Avatar answered Oct 23 '22 13:10

my-


Use platformio-ide-terminal and in the settings of the package:

  • Shell Override C:\Windows\System32\cmd.exe
  • Shell Arguments /K C:\path\to\cmder\vendor\init.bat
like image 20
Shiva127 Avatar answered Oct 23 '22 13:10

Shiva127


Since my machine is slow to start the batch script, here's an elegant way to add a loading message so it doesn't seem like the terminal is unresponsive, just add this to AutoRun:

@cls & echo Loading... & C:\your\path\cmder\vendor\init.bat
like image 43
Alex W Avatar answered Oct 23 '22 13:10

Alex W