this post was submitted on 19 Oct 2023
74 points (91.1% liked)

Asklemmy

43148 readers
2227 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy ๐Ÿ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_[email protected]~

founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 9 points 10 months ago* (last edited 10 months ago) (1 children)

How about VSCodium? I don't think I should explain why VS Code is best editor.

[โ€“] [email protected] 2 points 10 months ago (3 children)

You might need to explain to me. I've been having so many issues just using vscodium, took me forever to figure out I need to build and compile the code myself and not run it using the play button like Visual Studio in school (I'm a second year comp sci student).

[โ€“] [email protected] 3 points 10 months ago (1 children)

This is only the case if vscodium is not bundled with your distribution

[โ€“] [email protected] 0 points 10 months ago

I use Arch (btw) and believe I downloaded vscodium and all of its dependencies.

[โ€“] [email protected] 1 points 10 months ago

Check into the available plugins for your language. VsCodium's architecture pushes everything that not everyone needs into plugins, so unless you're just taking notes, you'll need a plugin for your chosen programming language, and eventually another for your chosen deployment environment (AWS, Azure, etc).

[โ€“] [email protected] 1 points 10 months ago (1 children)

In vs code there's a run button just like in visual studio. You can also press F5. You will most probably need to install an extension specific to your language so vscode knows what to do when you press F5. For some languages, you'll also have to create a launch.json file manually. launch.json is what describes what the "run" button does.

[โ€“] [email protected] 1 points 10 months ago (1 children)

Tried doing so but couldn't get it to work.

[โ€“] [email protected] 2 points 10 months ago (1 children)

In what language did you try?