Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio Code - lagging when typing

Tags:

java

ide

I have just installed Visual Studio Code together with the Java Extension Pack. However, when I opened my first file and started typing, the text I type appears after a delay - reaching up even one second.
I have a hunch that it might be due to the number of processes going behind the editor, like real-time syntax checking, autocompletion, code hints et cetera. Perhaps the laptop I am working at simply cannot handle that much. These are the parameters of my current machine:
Processor: Intel(R) Caleron(R) CPU N3350 (1.10 GHz)
RAM: 4 GB

I have another hunch that it may be due to the processor.

So, are there a ways to switch off these facilities like real-time error-checking? If not, what other IDEs for Java could you reccomend? (Apart from Eclipse)

like image 221
Aemilius Avatar asked Feb 24 '18 10:02

Aemilius


People also ask

Why is my Visual Studio code so laggy?

You might have extensions installed that slow Visual Studio down. For help on managing extensions to improve performance, see Change extension settings to improve performance. Similarly, you might have tool windows that slow Visual Studio down.

Can VS Code run on 1gb RAM?

VS Code is lightweight and should easily run on today's hardware. We recommend: 1.6 GHz or faster processor. 1 GB of RAM.


2 Answers

Had the same problem using Visual Studio Code while using Android Studio along with an Android Simulator in the background, and I run 8GB RAM and a CPU of 3.2GHz but when I returned to Notepad++ (I know its suicidal), to check if it is my problem or because of the IDEs, I typed in real time.

It is due to your processor as Visual Studio Code is not really recommended for "slow" CPUs. Personally I like it, although an IDE in the likes of Vim might suit you better.

Here is a link that might give some more hints: https://github.com/Microsoft/vscode/issues/38409

like image 129
Efthimis_28 Avatar answered Oct 01 '22 05:10

Efthimis_28


The easiest solution I found was to download and install Visual Studio Code Insiders. It's nearly identical except that it's known to lag less. Installing this will also clear any extensions or preferences you have enabled which might be causing the lag:

https://code.visualstudio.com/insiders/

You may also need to run it from the command line with the --disable-gpu flag

code-insiders --disable-gpu

or

/Applications/Visual\ Studio\ Code\ -\ Insiders.app/Contents/MacOS/Electron --disable-gpu

depending on your OS

like image 37
emery Avatar answered Oct 01 '22 05:10

emery