Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio Code replaces console.log()

Visual Studio Code randomly (50 percents of cases) replaces the console.log( with console( in JavaScript (ES6, Vanilla). All settings are set by default, no shortcuts or extensions used.

Have anybody experienced this behaviour?

Demonstration

Version

like image 257
Aleksandr Shumilov Avatar asked Nov 07 '22 01:11

Aleksandr Shumilov


1 Answers

This is followed by issue 56026

Can you try setting editor.acceptSuggestionOnCommitCharacter to false and see if you still have this issue?

It is possibly solved in 1.27.1 (possibly without having to change that setting).

like image 61
VonC Avatar answered Nov 14 '22 23:11

VonC