Live data from Hacker News

Visual Studio Code is now open source

code.visualstudio.com

281–290 of 403 posts

Re: Visual Studio Code is now open source

#281
post #65

The name of the "VS Code" product makes the title a little mis-leading. I thought the code for "Visual Studio" was open sourced. Turns out it's just this stripped down editor called "Visual Studio Code".

Visual Studio Code is a bad name. - It draws comparisons to Visual Studio- even though Code isn't really an IDE (nor is it supposed to be) - It's really bad for SEO, searching for "how to do X in Visual Studio Code" pulls hundreds of existing posts on how to do that thing in classic VS. That's going to disrupt developer experience for both VS and Code. - It's confusing for developers wanting to download Code, or VS;…

That's the entire idea behind the name. When you go to the website or start searching around for "Visual Studio Code" you quickly end up with links to Visual Studio (obviously) and Azure.

Make no mistake. Microsoft is not developing Visual Studio code out of the goodness of their hearts. This is a marketing strategy to get people to move to Azure.

Re: Visual Studio Code is now open source

#283

We've been asked this by a few people, so I figured this is a good place to respond: Will PTVS (Python Tools for Visual Studio) come to VSCode? The answer is YES! This will be a major focus next year. Expect full intellisense, debugging, profiling, pkg mgmt, unit test, virtual env, multiple interpreter, Jupyter, etc. support. Disc: Python/R/Jupyter team lead https://www.visualstudio.com/features/python-vs

This is great news. Now all we need is a proper terminal in Windows that includes Python out of the box ;)

The terminal in windows 10 is much improved. Specifically copy and paste being less insane, and proper multi-line selection. I'm sure it is still deficient in many ways, but those were always the biggest irritations. No built-in python yet though.

Re: Visual Studio Code is now open source

#284

Earlier quoted context omitted.

This has been on Debian, Netbeans, IntelliJ, and other editors / software / OS since as far back as I can remember. Not sure if it's standard, so long as it's optional I don't mind it.

Yeah, I first noticed this on desktop software in the early 2000s. Knowing how people are using your products is pretty critical for software companies to improve.

And yet it clearly violates our expectations of privacy. You don't think clicking a menu on a desktop app will send a report back to Microsoft HQ.

There are many ways to improve software that do not involve analyzing unwitting users, like making it clearly opt-in.

Re: Visual Studio Code is now open source

#285
post #15

Has anyone spent a lot of time with VS Code? I tried it a while back when it was first announced and have not found a reason to re-visit it yet. At the time it felt like a sublime-text alternative instead of an IDE (was it always positioned to be just an editor?) Always great to see more options though.

I think that's exactly what it is trying to be: a simple editor with some capabilities. A lot of people expect a "real IDE" to have a lot of fancy, specific, semi-proprietary features, but what I believe VSC is providing great editing capabilities and offloading everything else to good task managers (and now, extensions). A lot that you can do in "real IDEs" (like building your project) can be handled by Gulp, Grunt,…

> super fast typing response

How do you measure the typing response? Do you have a speed camera hooked up or something!?

Re: Visual Studio Code is now open source

#286

We've been asked this by a few people, so I figured this is a good place to respond: Will PTVS (Python Tools for Visual Studio) come to VSCode? The answer is YES! This will be a major focus next year. Expect full intellisense, debugging, profiling, pkg mgmt, unit test, virtual env, multiple interpreter, Jupyter, etc. support. Disc: Python/R/Jupyter team lead https://www.visualstudio.com/features/python-vs

Sounds great. I hope you will take inspiration from Hydrogen ( https://github.com/willwhitney/hydrogen ) which has been the greatest benefit to my python coding in recent months.

Wow, I had somehow missed Hydrogen but that looks amazing. It will probably be what finally gets me to drop Sublime for Atom.

Re: Visual Studio Code is now open source

#287
post #173

I wasn't sure what to expect from VSC, especially going into it I was worried that it would just be a MS-branded, bloated version of an already-slow Atom. My expectations were completely wrong, though. VSC is not bloated or slow. It's well-made. There aren't really any negative MS-flavored conventions as far as I can tell. This isn't MS Office (which I guess has its place but has gone off the deep end, IMHO). It look…

whole heartedly agree

Re: Visual Studio Code is now open source

#288
Why did MS fork atom.io again? Why didn't they do Facebook-style and just add modules that supported their stuff like how react ecosystem is now supported? Atom was slow but is picking up speed now and would be nice if it was simply aligned.

Re: Visual Studio Code is now open source

#289
post #29

Earlier quoted context omitted.

Interesting! I see there's a LaTeX highlighter but it seems there's no compiling add-on :(

You probably don't need a dedicated compiling add-on VS Code has a very simple, but capable, generic task running system. If you hit Ctrl+Shift+B ("Build" shortcut) it will launch and if it is the first time you've run it in that folder it will scaffold for you a sample JSON config file with a bunch of examples of how to configure it (and more examples are online).

Thanks! I tried the most basic building command possible and it works well. Displaying the PDF on the right panel would be very nice but it's a start. For reference I used the following tasks.json:

   {
    "version": "0.1.0",
    "command": "texify",
    "isShellCommand": true,
    "args": ["-p","${file}"],
    "isBuildCommand": true,
    "showOutput": "always"
   }

Re: Visual Studio Code is now open source

#290
post #173

I wasn't sure what to expect from VSC, especially going into it I was worried that it would just be a MS-branded, bloated version of an already-slow Atom. My expectations were completely wrong, though. VSC is not bloated or slow. It's well-made. There aren't really any negative MS-flavored conventions as far as I can tell. This isn't MS Office (which I guess has its place but has gone off the deep end, IMHO). It look…

Incidental to your point but I wouldn't characterise Office as bloated or slow. Word, Excel, and PPT 2016 are all super snappy.
Post reply on HN