Live data from Hacker News

Visual Studio Code 1.10

code.visualstudio.com

31–40 of 145 posts

Re: Visual Studio Code 1.10

#31

I think VS Code is pretty awesome. But I stopped using it because the monthly update experience on Ubuntu Linux pretty much sucks...by which I mean it mirrors the Windows update experience. One day I sit down to work and it's time to update and I lose fifteen or twenty minutes plus flow state going through the process (o.k. Windows with multiple reboots is actually noticeably worse often times (like just earlier this…

[deleted]

Re: Visual Studio Code 1.10

#32

Copy Syntax Highlight is huge. Years ago, I had written a utility to invoke syntax highlighting from text sources for use in PowerPoint presentations and Photoshop editing ( https://github.com/minimaxir/copy-syntax-highlight-osx/ ); I am very happy it is now obsolete.

Finally, a workaround to the lack of support for printing code! (not just VSCode, but all the major editors -- Atom, Sublime, etc.)

Re: Visual Studio Code 1.10

#33

I think VS Code is pretty awesome. But I stopped using it because the monthly update experience on Ubuntu Linux pretty much sucks...by which I mean it mirrors the Windows update experience. One day I sit down to work and it's time to update and I lose fifteen or twenty minutes plus flow state going through the process (o.k. Windows with multiple reboots is actually noticeably worse often times (like just earlier this…

Did you read the post? They introduced an official PPA in this release.

Official docs: https://code.visualstudio.com/docs/setup/linux#_debian-and-u...

The PR for it: https://github.com/Microsoft/vscode/issues/2973#issuecomment...

Re: Visual Studio Code 1.10

#34

I think VS Code is pretty awesome. But I stopped using it because the monthly update experience on Ubuntu Linux pretty much sucks...by which I mean it mirrors the Windows update experience. One day I sit down to work and it's time to update and I lose fifteen or twenty minutes plus flow state going through the process (o.k. Windows with multiple reboots is actually noticeably worse often times (like just earlier this…

In the past I've updated using umake on Ubuntu[1]. Makes getting new versions a breeze.

[1] https://itsfoss.com/install-visual-studio-code-ubuntu/

Re: Visual Studio Code 1.10

#35

I think VS Code is pretty awesome. But I stopped using it because the monthly update experience on Ubuntu Linux pretty much sucks...by which I mean it mirrors the Windows update experience. One day I sit down to work and it's time to update and I lose fifteen or twenty minutes plus flow state going through the process (o.k. Windows with multiple reboots is actually noticeably worse often times (like just earlier this…

[deleted]

Re: Visual Studio Code 1.10

#36

A minimap! This was one of the last remaining Sublime features that I missed.

Can someone explain the attraction of the minimap? It's something I turn off in any editor. I can't rely on a postage stamp size picture of my code being unique enough between different parts of a file -- beyond perhaps the imports/constants/macros at the top, which you don't need help finding anyways. ctrl-f or 'go to definition' has been enough.

It's everything a scroll bar does and more. Yea you can kind of get to know the structure of your code which is nice and sometimes when I open up a file and the mini-map is dense I already know I'm getting into a big file.

One of the most useful features for me (not sure if VS Code has this), but when I double-click/select a word, all other words with the same name are highlighted in the minimap. It's crazy useful for me, like a double-click/search/find all instances, it helps me jump around code very quickly.

Re: Visual Studio Code 1.10

#37
post #6

Awesome work VSCode team!! I can't figure out how to enable TypeScript auto import - is it hidden behind a flag? Coming from IDEs, I've been waiting for this feature for a long time.

I work on TS and JS support for VSCode. Try moving the cursor into red squiggles for the missing symbol and then clicking on the lightbulb in the gutter or hitting cmd+period. This will bring up the quick fix menu for adding missing imports. We don't support automatically adding imports as you type, but this is something we are looking into. If you see any problems with the feature or have any suggestions on how it c…

No lightbulb, but cmd+. did it -- Thanks! Any way to format the import too (we use single quotes and no semicolon, enforced by TSLint)?

Awesome job on JS/TS integration by the way. I've used Frontpage, Dreamweaver, Notepad++, Sublime, Atom, Vi, Webstorm, and Intellij in the past, and editing TS in VSCode beats all those other editors by a mile. Keep it up!!

Re: Visual Studio Code 1.10

#38

The repo seems to be broken for me on Debian Testing. Maybe they should list "apt-transport-https" as a dependency. Hit:1 http://mirrors.ocf.berkeley.edu/debian stretch InRelease Hit:2 http://security.debian.org/debian-security stretch/updates InRelease Reading package lists... Done E: The method driver /usr/lib/apt/methods/https could not be found. N: Is the package apt-transport-https installed? E: Failed to fetch…

Thanks for the report chrisper, tracking this in https://github.com/Microsoft/vscode/issues/21654

Re: Visual Studio Code 1.10

#39

I'm still looking for the auto-reload preview that is right beside the code which refreshes when you save.

We support live preview for markdown and are investigating support for html as well ( https://github.com/Microsoft/vscode/issues/12080 ). Extensions can also provide their own live preview implementations

If you have suggestions or ideas for a live preview, please file a feature request: https://github.com/Microsoft/vscode/issues/new

Re: Visual Studio Code 1.10

#40
post #38

The repo seems to be broken for me on Debian Testing. Maybe they should list "apt-transport-https" as a dependency. Hit:1 http://mirrors.ocf.berkeley.edu/debian stretch InRelease Hit:2 http://security.debian.org/debian-security stretch/updates InRelease Reading package lists... Done E: The method driver /usr/lib/apt/methods/https could not be found. N: Is the package apt-transport-https installed? E: Failed to fetch…

Thanks for the report chrisper, tracking this in https://github.com/Microsoft/vscode/issues/21654

I added a few more missing dependencies I found when installing it on Debian.
Post reply on HN