How to Disable All Intellisense,Autocomplete & Suggestions While Coding in VSCode IDE
0 views
Jul 2, 2025
Get the full source code of application here:
View Video Transcript
0:00
Uh hello guys, welcome to this video. So
0:02
in this video I will show you how to
0:04
disable all the intellisense
0:07
as you write inside your VS code while
0:10
coding these intellisense suggestions
0:13
autocomplete
0:15
just show right here. You will see as
0:17
you write the function name set interval
0:19
inside JavaScript it actually shows you
0:22
uh all the function names in the
0:24
drop-down. So I will show you in this
0:26
video if for some reason if you want to
0:28
disable all this
0:31
if you don't want the intellisense or
0:33
autocomplete that VS code provides you
0:35
there is a way that you can do this.
0:38
So if you all want to disable these
0:40
intellisense autocomplete for this you
0:43
just need to go to the user settings
0:45
JSON file. So just open the command
0:47
pallet control shiftp is the shortcut on
0:49
windows just type here user settings in
0:53
the preferences and right here in the
0:55
description of this video I have given
0:57
this code here you can actually copy
1:00
paste so let me show you one by one
1:02
first of all we are manipulating this
1:05
quick suggestions property
1:08
uh other we need to turn this off so I
1:10
will say here false So
1:15
this is the suggestions that you get as
1:18
you write the code here. So we are
1:19
manipulating it other to off comments. I
1:22
will again set it to false
1:27
and uh strings also false and then after
1:31
that we need to set four more properties
1:33
here. One such property is editor dot
1:37
suggestion suggest
1:40
on trigger characters. As you're writing
1:43
your code, it will suggest you the code.
1:46
Here we are just turning this property
1:48
from true to false. The next property is
1:52
your editor dot parameter hints
1:58
dot
2:00
enabled. And we need to set this to also
2:03
false.
2:05
And one more thing we need to say editor
2:07
dot wordbased
2:10
suggestions. This also we need to turn
2:12
this off. False. And editor dot inline
2:17
suggest
2:20
dot enabled as well. We need to set it
2:23
to false as well. So this snippet of
2:25
code will turn all the suggestions, all
2:28
the intellisense that you see inside
2:30
your VS code, it will turn them to off.
2:33
So this much of code that you need to
2:35
paste inside your user setting file. Now
2:37
if you visit your code file, you will
2:40
not see any sort of suggestions, any
2:42
sort of interventions will be everything
2:44
is set off and now no help is there for
2:48
you. You need to write the code by
2:51
yourself. So in this easy way you can
2:53
disable and turn off all the
2:55
intellisense and all the autocomplete
2:59
features all the suggestions in VS code
3:04
and again if you want to turn this off
3:06
you can remove this code from here all
3:09
these properties and once again your
3:12
intellisense will be back here you will
3:14
see that everything is there again so
3:16
I've given this code in the description
3:18
of this video simply paste it inside
3:20
your user setting file and then all your
3:24
intellisense will be turned off. So
3:26
please hit that like button, subscribe
3:28
the channel as well and also check out
3:30
my website freemediatools.com
3:33
uh which contains thousands of tools.
#Programming
#Scripting Languages
#Software