Can VSCode share a project to GitHub like in WebStorm? - visual-studio-code

I want to share a new project to my GitHub. Can I do this similar to WebStorm where just click some buttons?
P.S. I could not find nowhere I can log in to GitHub in VSCode.

VS Code does not provide UI for this. I recommend learning to use the command line for this instead: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
A VS Code extension could also provide UI for this experience however I am not aware of any that do currently.

Related

Are there any WYSIWIG editor available for writing GitHub issues?

I am trying to import my issues from Notion to GitHub but finding the markdown system really hard to write/preview. Writing on markdown is still fine but if I want to see the preview, there's tons of back and forth.
Wondering if someone has solved this issue with an external plugin?
Check out GitHub Writer, which has a Chrome and Firefox extension.

Can you run a version of vscode inside the browser without a server?

Is there any way to run a version of VS Code inside a browser without a server? (inside a React or Angular app). Something like an enhanced version of the monaco editor.
Of course that means it will have some missing functionalities.
If not, are there any other options?
Try this https://securingsincity.github.io/react-ace/
its something of the same king what you want
As far as I could find, it is possible to run VSCode in the browser (since we have vscode.dev), but there doesn't seem to be anyway to deploy it yourself yet?
This Github issue is probably what you want, but there isn't any information there (or on the repo) yet.
It does strongly suggest that https://github.com/microsoft/vscode is the version used for vscode.dev, so there might be things to be found there, until official instructions/embedding is possible.
I think it depends on how you treat vscode.
if it is just a editor software, there'll be a lot of .
For you customerization purpose, it sounds something like 'https://github.com/cdr/code-server'
Not sure if it helps, but you can try looking up gitpod.io. It opens up a visual studio code instance on your browser with options of installing extensions as well.
Use the link like gitpod.io/#https://github.com/username/repo-name
You can possibly use Gitpod self-host, https://github.com/gitpod-io/gitpod or https://github.com/gitpod-io/openvscode-server they both have documentation on how to create your own version of VSCode for the web, however, as I've never tried to create one myself, I don't know if it accomplishes your specific use case.

Is there a plugin for VSCode for setting images into code comments?

Is there a plugin for VSCode for setting images into code comments? Like this https://github.com/lukesdm/image-comments for Visual Studio or this https://marketplace.visualstudio.com/items?itemName=MsBishop.ImageComments&ssr=false#overview. If don't how I can do it by myself?
Technically it's possible but the author of the extension won't be able to publish it to marketplace since the api is in a proposed state:
https://github.com/microsoft/vscode/issues/85682
There are several.
CodeRush is one from DevExpress:
https://docs.devexpress.com/CodeRushForRoslyn/120417/visualization-tools/rich-comments
I think Resharper (JetBrains) has one too.

Is there an editor which allows you to design UI like Xcode for Ionic?

I am starting out with Ionic and I been using VSCode for all my development. One thing I miss in VSCode is the ability to view the UI (not as HTML) like preview and able to change things in the preview screens (like Visual Studio for asp.net).
Does VSCode do that with any plugins or is there an alternative editor which has this feature?
After some research found this https://creator.ionic.io and Robert Harvey's answer is good answer.

Visual Studio Code Plugins (Format / Spell Check)

Using the new Visual Studio Code editor vs 1. This is not the full Visual Studio IDE but their atom.io based code editor. I would like to install plugins specifically for spell check and formatting my code. How can I do this?
I've followed instructions here: Is there a command for formatting HTML in the Atom editor?
but realized that I do not have a install plugin command.
It's been a few months since the question was asked (and answered), but thankfully, things have changed!
VSCode now support extensions!
Here's a relevant excerpt from the above blog post:
Extension Marketplace/Gallery
To complement the extensibility mechanism, we have also launched an in product gallery and web based extension marketplace. These allow you to discover and install extensions. To open this up in VSCode, simply hit F1 and select Extensions: Install Extensions.
Alternatively, you can browse the Extension Marketplace at https://marketplace.visualstudio.com/#VSCode.
I gave the marketplace a quick search and easily found multiple extensions for spelling and source formatting, but I'll forego making any specific recommendations since everyone's requirements are different.
For anyone looking to write their own extensions for VSCode, take a look at the documentation for extending VSCode, as it has a lot of the information you'd need to start writing your own extensions.
Lastly, thanks to Daniel for his comment. It helped me find the information I needed, but to save future visitors some time, I thought it was worth sharing my findings.
Plugin support is not currently enabled in the VSCode editor. The development team were not happy with the plugin API, so they have disabled them until further work can be made on this.
For more information, see this post: https://stackoverflow.com/a/30006220/495328
Nowadays you can use Prettier and Code Spell Checker for the purposes.
Here are some use case for spell check:
Load a CSS, JavaScript, Text, etc. file. Words not in the dictionary files will have a squiggly underline below the text.
To see the list of suggestions just click on the 💡 (lightbulb) in the left hand margin. You have the option to add your own words to the workspace dictionary.