Live data from Hacker News

Visual Studio Code 1.4

code.visualstudio.com

141–150 of 155 posts

Re: Visual Studio Code 1.4

#141
post #111
post #94

Earlier quoted context omitted.

A colleague uses it on OSX, and it's awful: unstable, crashes, hangs during debugging, the debugger doesn't always update the displayed values, doesn't grok auto declarations, etc. So far, Netbeans is the best free C++ IDE I've tried.

What about KDevelop?

Waiting for version 5 to try it out because it has clang-based completion.

Re: Visual Studio Code 1.4

#142
post #77

What would be some of the cool features that only exist on VSC that Sublime doesn't have?

The cool telemetry phone home features that cannot be turned off in a reliable way (think updates). It's the feel good vibe that runs through all new MS apps and Win10. We should thank the third CEO for his great vision and be happy to give him all insight he needs. He is clearly steering his thriving platform to the next level.

Judging a specific part part of a behemoth company based on the controversial and by no means decidedly unethical actions of another are as annoying as using Micro$oft as a slur.

Re: Visual Studio Code 1.4

#143

I've been using VSC as my daily driver for a few months now and it's great -- even on nightly builds. The most powerful features is the tasks.json. Once I learned to use it (the docs aren't good on it), I was able to utilize it to bring a more cohesive experience across many code bases. I enjoy the fact that it gives an integrated experience and allows community extensions. This is a big change from atom where everyt…

Would you expand on tasks.json? Where would I learn more besides docs, are there any specific source files? Does it support passing variables like the current file? Would you mind sharing your tasks.json?

Edit: it looks like an issue about tasks.json presents some good examples: https://github.com/Microsoft/vscode/issues/981

Edit2: and here's the information about variables: https://code.visualstudio.com/docs/editor/tasks#_variable-su...

Re: Visual Studio Code 1.4

#144
post #73

Visual Studio Code is currently my favorite editor. Fast, informative intellisense, great debugging environment, good git integration, faster than Atom, etc.

Fast? Really? What are you comparing it to?

"Fast, informative intellisense" not fast in the general sense. Also, faster than Atom .

Re: Visual Studio Code 1.4

#145
post #33

Earlier quoted context omitted.

That's funny, I don't know that it's been referred to as an IDE so much as a more advanced code editor.. which is about all I use it for... I generally have my rightmost screen with iTerm and 3 windows split, one tall, the other two quarter screen... next to the left is VSCode for the project/directory I'm in, left again for browser, left for lync/outlook etc. As a code editor, I've really liked VS Code.. I haven't e…

You should be able to get most of the old behavior back by adding this to your settings.json: `{"workbench.editor.showTabs": false, "explorer.openEditors.visible": 10}`

Thanks.. is there a setting to re-integrate the left/middle/right into a single list?

Re: Visual Studio Code 1.4

#146
post #59

Earlier quoted context omitted.

Agreed, I kind of wish that MS could come up with a way to get rebase/squash and pull --rebase working in the editor, having a 3-way merge in VS Code would be awesome... unfortunately it doesn't work well as a system editor choice for git cli. Been very happy with VS Code, though I wish I could revert to pre-tabs file behavior, I'd like the space back... it took getting used to, but the list switcher was a better UX…

> I wish I could revert to pre-tabs file behavior Adding the following to your User Settings should get you pretty close: { "workbench.editor.showTabs": false, "workbench.editor.enablePreview": false, "workbench.editor.enablePreviewFromQuickOpen": false, // ... }

Cool, thanks, anything to re-integrate left/middle/right into a single list again?

Re: Visual Studio Code 1.4

#147

I've been using VSC as my daily driver for a few months now and it's great -- even on nightly builds. The most powerful features is the tasks.json. Once I learned to use it (the docs aren't good on it), I was able to utilize it to bring a more cohesive experience across many code bases. I enjoy the fact that it gives an integrated experience and allows community extensions. This is a big change from atom where everyt…

Would you expand on tasks.json? Where would I learn more besides docs, are there any specific source files? Does it support passing variables like the current file? Would you mind sharing your tasks.json? Edit: it looks like an issue about tasks.json presents some good examples: https://github.com/Microsoft/vscode/issues/981 Edit2: and here's the information about variables: https://code.visualstudio.com/docs/editor/…

https://code.visualstudio.com/docs/editor/tasks

Re: Visual Studio Code 1.4

#148
post #51

Number one drawback of VSCode, for me, is poor vim keybindings, especially visual mode. If that was fixed I'd use it extensively.

I wanted to use VSCode when I started writing TypeScript three months ago, but I found the Vim plugins super lacking, so I used Atom instead, which has a much more robust Vim plugin. However, I tried VSCode again last week after being disappointed by continued bugs in atom-typescript, and was happy to discover the Vim plugin ( https://github.com/VSCodeVim/Vim ) had made a ton of progress since I'd last given it a sho…

What advantage is there to Atom or Vscode over vim/neovim? (Honestly curious. I can see why people might prefer it to notepad, but if you're already a vim user..?)

Re: Visual Studio Code 1.4

#149
post #16

Still no auto-import on Typescript. The main reason I use Webstorm over VSCode currently. What I am talking about: * new Foo| * * (Automatically inserted by editor top of the file where imports are) import {Foo} from "../relativePath/to/Foo.ts" * new Foo(param);| Working on a large TS codebase without this is absurd. Webstorm is way ahead of VSCode in this area, including things like multiple named imports like: * im…

There's actually an extension which can do this: https://marketplace.visualstudio.com/items?itemName=steoates....

Re: Visual Studio Code 1.4

#150
post #59

Earlier quoted context omitted.

> I wish I could revert to pre-tabs file behavior Adding the following to your User Settings should get you pretty close: { "workbench.editor.showTabs": false, "workbench.editor.enablePreview": false, "workbench.editor.enablePreviewFromQuickOpen": false, // ... }

Cool, thanks, anything to re-integrate left/middle/right into a single list again?

Not that I've found.
Post reply on HN