Ok, so Microsoft released a Visual Studio version on Linux and OS-X called Visual Studio Code. It’s also available for Windows but it’s so minimalistic compared to Visual Studio one might not want to use it on Windows.

There is however potential for this new IDE that Microsoft has released. It’s minimal and super fast at this point. On OS-X you can set it to launch as many of us OS-X users use Sublime (or your favorite editor here) to open entire projects.
Starting
Add this to the end of your bash startup script and you’ll have the magic sauce available via the command line.
[sourcecode language=”bash”]
code () {
if [[ $# = 0 ]]
then
open -a "Visual Studio Code"
else
[[ $1 = /* ]] && F="$1" || F="$PWD/${1#./}"
open -a "Visual Studio Code" –args "$F"
fi
}
[/sourcecode]
You’ll then be able to open projects with the standard command notation as shown.
[sourcecode language=”bash”]
✔ ~/Codez/React-Studies [master|…9]
16:28 $ code .
[/sourcecode]
That pulls up a project in the editor just like this.

From there, just do what ya do and sling some code. There’s other features that are detailed on the Visual Studio Code site, but I’ll let you read up on those there.
Git Integration
The next thing I thought was pretty cool was the git integration, if for any reason because it just kind of looks nice. Nothing revolutionary here, but it’s nice to easily see without diving out to the bash to see what’s up.

…and the commit screen…

Now mind you, you can commit but not attach to any remotes and actually work with those. That’s kind of… disconnected? It’s fine though, whatever.
Quick Summary
So that’s my 5 minutes review. My main takeaway from all of this though, is that Visual Studio Code is not ready for prime time usage. It’s sorely missing a ton of features or capabilities that other editors, like Sublime or Atom, already have. I’m sure in the coming versions there will be more features and capabilities added, but currently I’ll be sticking to my WebStorm, Atom, Sublime, or Brackets usage for development needs still. For existing or future C#/F# Development I’ll just be using Xamarin’s tools most likely or diving into a Windows VM with full fledged Visual Studio. Until the future, I’ll just have to keep an eye on Visual Studio Code.
VS on Ubuntu on Pixel, very cool the new Microsoft openness
http://cliveboulton.com/post/118023028931/redmonds-new-mascot-has-web-feet
Btw, VS also a life saver, I can’t figure how to install sublime on Ubuntu via ppa
sudo add-apt-repository -y ppa:webupd8team/sublime-text-2