Reputation: 1
I literally cannot type . in Visual Studio Code. This error pops up : command 'java.project.addToSourcePath' not found
My keybindings.json looks like this right now.
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "oem_6",
"command": "javascript.goToProjectConfig"
},
{
"key": "oem_period",
"command": "java.project.addToSourcePath"
},
{
"key": "ctrl+shift+alt+p",
"command": "java.project.create"
}
]
Upvotes: 0
Views: 826
Reputation: 14956
delete these lines,then you could type dot
{
"key": "oem_period",
"command": "java.project.addToSourcePath"
},
Upvotes: 0