Visual Studio Must-have - Open Command Line (and Babun)

I’ve been using the Open Command Line by Mads Kristensen for several months now. Recently I’ve finally figured out how to have it open Babun and decided to share.

The extension is quite simple. It adds a menu item to folders in Solution Explorer and a shortcut which will open a new terminal window. By default it’s Alt+Space, which I haven’t felt like changing.

Not only does it open that console, it will actually set the working directory based on the open file or selected item in Solution Explorer, whichever is focused.

open cmd

Default settings include Developer Command Prompt but most importantly it let’s you set up a custom terminal to run.

Setting up with Babun the right way

In the past I had already set up Open Command Line to open Babun but it opened an ugly cygwin window which I didn’t like. It made me use the extension sparingly. With proper setup however I use it all the time.

To set it up go to Tools -> Optiona -> Command Line and input these values

1
2
3
4
5
6
7
8
Friendly Name:
  - Default (Custom)
Select preset:
  - Custom
Command:
  - %UserProfile%\.babun\cygwin\bin\mintty.exe
Command arguments:
  - /bin/env CHERE_INVOKING=1 /bin/zsh.exe

open cmd

Oh, and guess what. Babun will become one of the default presets soon.

Comments