Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Settled into neovim for startup speed. My VSCode editor has vim keys too, so ... ohm! :)

edit: My only gripe with VSCode currently is that it seems too eager to correct my typing.



You can actually use this:

https://marketplace.visualstudio.com/items?itemName=asvetlia...

Actually uses a real backend neovim instance. Can’t get better vim support than that! I find it a god-send when working in VSCode as the Vim key map alternative was slow, buggy, didn’t have full support.

Now I don’t have to compromise.


I actually battle vscode every freakin day over autocomplete. It's really bad if you're writing php and happen to have a // phpcs somewhere, it'll convert <?php to <?phpcs which makes no damn sense.


By itself VSCode won't autocorrect you. You should take a look at your extensions settings.


For my use case, autocomplete of any kind is useless, so I turn it all off. When "in the zone" anything that distracts from getting ideas out of my head as quickly as possible is annoying. Also, zen-mode, FTW.

    "editor.acceptSuggestionOnEnter": "off",
    "editor.quickSuggestions": {
        "comments": false,
        "other": false,
        "strings": false
    },
    "editor.wordBasedSuggestions": false,
    "extensions.ignoreRecommendations": true,


Sometimes after I type a variable name (the whole word, not partial) it autocorrects it into something else. I am in the habit of hitting Esc after each word now.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: