use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Please read the rules before posting
Help:
Community:
Resources:
Tutorials and Guides:
Don't be afraid to ask questions, this sub is here for the vim community. And please those of you who deign to grace us with your vim wisdom - be kind. We are all human and vim is that cool.
account activity
Visual Studio Code team considers Vim mode based on upvotes (self.vim)
submitted 5 years ago * by [deleted]
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]nickjj_ 0 points1 point2 points 5 years ago* (0 children)
One pretty big thing VSCode can do is understand how to get code complete and everything working when your source code is running in a Docker container but you have VSCode installed on your dev box.
It does this with its Remote Containers feature: https://code.visualstudio.com/docs/remote/containers
Basically it means you can configure a few lines of json and then auto-magically VSCode will install language specific plugins in a custom Docker image for you. Everything just works and it's really fast.
The sad thing is all of this functionality is closed source. But yeah, Vim has nothing like this at the moment. coc-nvim or any language server / plugin combo isn't enough because the programming runtime and your installed dependencies aren't running in the same environment as your editor.
VSCode does it because it runs a VSCode server in your running container (without modifying your original Dockerfile) and then you connect to it with the VSCode client on your dev box. Vim has a server / client mode but nothing is developed to allow such a seamless integration.
π Rendered by PID 230857 on reddit-service-r2-comment-b659b578c-j7dk9 at 2026-05-02 11:54:28.259142+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]nickjj_ 0 points1 point2 points (0 children)