Code suggestion
I want to remove something i dont know if it is from extension or what but when i write code it suggests me the other part like in a gray form and when u press tab it writes it for u
how do i remove this feature?
6 Replies
i think i found it
is it quick suggestion?
lol
it's called Intellisense. I'd honestly recommend getting used to it, it's something most developers go to a ton of effort to enable for any language and framework they use
but you can turn it off in your user settings if you want
so is it better
if i keep it?
it helps you remember what functions, methods, and properties exist
it's up to you though
okay bro thank u
it does a lot more than the autocomplete
if you use typescript, it does type checking
if you use javascript, it uses jsdoc and/or typescript .d.ts files to check the types a bit loosely, unless you add
//@tscheck
at the top
you can also press f12 to jump to the definition of something
and when you hover something, it shows documentation about it
intellisense is really powerful and helpful, and disabling it (without a good reason) will be detrimental to you
(unless you have 10+ years of experience without it)