Letter ç in the VS Code editor

1

The "c" folder disappeared in the Visual Studio Code that I use on my MacBook. This happened some time ago after an update. Works in any editor except VS Code. Has anyone ever experienced this?

    
asked by anonymous 07.02.2017 / 20:43

1 answer

2

Go to: (Preferences / Keyboard Shortcuts) and when you open the key settings tab, under the search field you have the option to open in advanced mode the file (keybindings.json) and edit it by adding the object below :

[
    {
        "key": "alt+c",
        "command": "-task.cancel",
        "when": "editorTextFocus"
    },
    {
        "key": "alt+c c",
        "command": "-extension.colorHelper.convert",
        "when": "editorTextFocus"
    },
    {
        "key": "alt+c p",
        "command": "-extension.colorHelper.pick",
        "when": "editorTextFocus"
    }
]

Solved with me here this problem the above code! Abs ...

    
11.05.2017 / 21:04