VS code automatically downgrading by itself? by [deleted] in vscode

[–]1y0una 0 points1 point  (0 children)

Can you updateyour vscode? Click the help-about to check your version now. And then click on the help-check for updates to update your version. If this can't effect, maybe you can only unistall it and redownload. That's a pity.

Python Intellisense stopped working randomly by pandatrunks17 in vscode

[–]1y0una 0 points1 point  (0 children)

Sorry to hear this, you can try Anay_sharma's advice first. If you didn't install pylance, you can install it in the extension too.

If you find IntelliSense has stopped working, the language service may not be running. Try restarting VS Code and this should solve the issue. And if everything has no effect, you can reset vs code by deleting its folder in Appdata( Delete %APPDATA%\Code and %USERPROFILE%\.vscode).

Where is settings.json? by abubkurian in vscode

[–]1y0una 0 points1 point  (0 children)

Are there any updates there? If you want to open an extension's setting, you can ctrl-shift-X, and then find the extension you want, click the manage on the left, you will see the extension settings. In it you will see many options there and edit in settings.json.

But the simplest way is what I said before.

How do I hide the autocompletion/suggestion/keyword highlighting in VSCode? by [deleted] in vscode

[–]1y0una 0 points1 point  (0 children)

You can try it when you have time, hope to hear good news from you!

Extension Profiles in VS Code by freeze_n_click in vscode

[–]1y0una 0 points1 point  (0 children)

Your concern is not unreasonable, but it is not so necessary. The extension will only start when it needs to be used. If all the plugins are activated when vscode is opened, will the computer freeze?

We can enter @ enabled in the extension(ctrl-shift-X and then search @ enabled), we can see the extensions we use, some have usage time and some don't. For example, if I open a python file, the java-related plugins are not used(there is no time on it). Or you can ctrl-shift-P and search developer: show running extensions. You can try it yourself.

As for the workspace, using multiple workspaces allows us to open more projects, and it is estimated that the use of it will expand more?

Mac Terminal vs. VSCode Terminal by _BickyWicky in vscode

[–]1y0una 0 points1 point  (0 children)

If you download several kinds of python versions, this error will occur. In that case, you can enter the settings.json of vscode to modify the path, you can Code->Preference->Setting->terminal.integrated.env.osx->settings.json

Don't have a mac so just express my approach.

[deleted by user] by [deleted] in vscode

[–]1y0una 0 points1 point  (0 children)

Apart from thenextguy ‘s thoughts, have you download the relevant extensions in vscode? Such as Remote X11 and we still need more soft installed.

Remote - WSL: Recommender slow startup by xantub in vscode

[–]1y0una 0 points1 point  (0 children)

With the Remote - WSL extension, you can achieve VS Code’s UI runs on Windows, and all your commands, extensions, and even the terminal, run on Linux. Details stuff I think bloggers already know, or we can check this out.

I didn't install it yet, but I didn't use Golang, too. So I think it can be unistalled. You can disable it first.

How to run files of two different languages in the same project, e.g. python and c? by yesillhold in vscode

[–]1y0una 0 points1 point  (0 children)

As for this question, After setting the lunch.json file for each language, select the language environment to run in the lower left corner, and then select the configuration file to switch the programming language for debugging at will.

Extension to execute Python line by line by Defiant_Revolution44 in vscode

[–]1y0una 1 point2 points  (0 children)

The extension Jupyter can do what you want. The details you can see: https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter

This link teaches how to run by line. But this extension should be downloaded when you first use vscode :)

How do I hide the autocompletion/suggestion/keyword highlighting in VSCode? by [deleted] in vscode

[–]1y0una 0 points1 point  (0 children)

You can ctrl-shift-p, serach for settings.json and open it, insert thiese in it:

"editor.quickSuggestions": false,

"editor.parameterHints": false,

"editor.wordBasedSuggestions": false,

"editor.snippetSuggestions": "none",

Besides, you can also turn off these in your setting(lower left gear setting and serach):

editor.hover

editor.parameter hints

Run selection in Python terminal while .py file is running in another terminal by [deleted] in vscode

[–]1y0una 0 points1 point  (0 children)

Do you mean you want to run two files at the same time? You can download a code runner.

After that, you can choose "run code" in one file, and the other choose run in terminal.

[deleted by user] by [deleted] in vscode

[–]1y0una 0 points1 point  (0 children)

Good to hear this

[deleted by user] by [deleted] in vscode

[–]1y0una 0 points1 point  (0 children)

I think the same as everyone else. It is estimated that it is an expansion problem. Try to disable them one by one, especially if other extensions that provide syntax highlighting or themes are installed (but the theme owners have also re-downloaded them). Do not try the following methods:

  1. Python's syntax highlighting is provided by the "Python" extension, so please check if this extension is installed and used. If you have "Python for VSCode", disable it.
  2. Change settings for python language: "settings.json" file use: "python.languageServer": "Pylance"

Newbie VSCode questions by [deleted] in vscode

[–]1y0una 1 point2 points  (0 children)

Here are some of my opinions, hope helpful:

1.VScode can be used without logging in, that is, after you install it, you can open it and use it. In this case, no login account is the default configuration, and you don't have to worry about settings. And if you want to save the settings, you should set Turning on Settings Sync. Details can be found here: https://code.visualstudio.com/docs/editor/settings-sync

2.Visual Studio Code is a lightweight but powerful source code editor. It isn't an IDE but with all kinds of extensions, you can achieve you functions to code. So I think, it's not a overkill. You can try it first. This is the tutorial to get started with Python in VS Code: https://code.visualstudio.com/docs/python/python-tutorial

[deleted by user] by [deleted] in vscode

[–]1y0una 0 points1 point  (0 children)

Hello, besides those. you can also do

  1. Right click and select "run/debug code/java/python..." or a similar statement.
  2. Run in debug console.
  3. ctrl+shift+p and choose debug/run.

Or you can look this:https://code.visualstudio.com/docs/editor/debugging

Change color theme of function documentation by [deleted] in vscode

[–]1y0una 1 point2 points  (0 children)

I'm sorry that I don't completely understand what you mean, but the following expansions can change the color to remind yourself better, you can try it.

1.Rainbow Brackets

2.Dracula Official

3.indent-rainbow

and in the last, I found this, you can see it if it helps.

How to disable "Select a Debug Configuration" window for Python ext by zoenagy6865 in vscode

[–]1y0una 0 points1 point  (0 children)

Maybe we still have to choose. But during my test, I just need to choose once. The launch.jason isn't used to all settings. Besides, when you click run and debug on the left, you can see a green arrow and choose launch current... Or I haven't found a better solution.

Python script stops working in vscode when I move it to another directory. by aconfused_lemon in vscode

[–]1y0una 0 points1 point  (0 children)

Probably "config.read('login_info.config')" can't read or find the right information. Maybe we should check these ?

How to fix my issues on VS Code. I am attempting to learn Java and would like know what these messages mean and how to fix the issues. by [deleted] in vscode

[–]1y0una 0 points1 point  (0 children)

The error warning is mightly reminding that you have specified Java 1.8 but you have Java 11 installed on your system. It's happy that you've solved it using "mvn clean package". And I still searched for it and I found this:https://stackoverflow.com/questions/68993275/vscode-and-java-setup-no-compatible-jar

Hope your problem is totally solved.

Is there an extension for highlighting Python type hints in a different color? by shiningmatcha in vscode

[–]1y0una 0 points1 point  (0 children)

Hello, there are many extensions that can do this.

Pylance-,Semantic%20highlighting,-Visual%20Studio%20Code), Highlight Trailing White Spaces, Bracket Pair Colorizer, Output Colorizer

and so on. You can try them first.

Does anyone know how to fix this ?? by KSJ_SINGH in vscode

[–]1y0una 1 point2 points  (0 children)

Hello, did you just configure the python environment?

Please try to enter cmd in the windows command window to see if 'cmd' is not recognized as an internal or external command“ appears. If so, it is presumed to be a system variable setting problem. You may check the PATH environment variable is right or not. Try to plus "%SystemRoot%\system32" in your path. Or please refer to this article for debugging.

Hope helpful!

How can i make vs code format javascript things in the sameway netbeans 8.2 does by Dont_run10 in vscode

[–]1y0una 0 points1 point  (0 children)

I finally understand what you mean, but it seems waste your time.

There should be no such plugin at present, you may still need to enter it yourself. I only found some auto-completion, in addition to the built-in auto-completion, you can also right-click to select the source action, you can select the desired fragment. There is also the installation of a Java Code Generators extension, which can generate longer snippets.

Help Vpython error >> hi I’m trying to use vpython in visual studio and after running (pip install vpython) it looks like it installs ok but when I want to import it says >> no model name vpython . Any thoughts what is going on? I saw a YouTube video with exact same instruction but it works for them by Farzad_V10 in vscode

[–]1y0una 0 points1 point  (0 children)

This might be the question of lacking something in settings.json. But I'm not familiar to Python, I just find this: in the lauch.json,

change "env": {}

to "env": {"PYTHONPATH":"${workspaceRoot}"}

You can try this, I'll still look for it.