Reatz
Reatz

Reputation: 1

Cannot type "dot" in Visual Studio Code

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

Answers (1)

Leo Zhu
Leo Zhu

Reputation: 14956

delete these lines,then you could type dot

{
    "key": "oem_period",
    "command": "java.project.addToSourcePath"
},

Upvotes: 0

Related Questions