-
Notifications
You must be signed in to change notification settings - Fork 37.7k
Closed
Description
I want to remove the contributes.keybindings by keybindings.json.
The use case is to load settings from an external file into the key mapping extension and overwrite the default package.json's contributes.keybindings setting with keybindings.json.
package.json
"contributes": {
"keybindings": [
{
"key": "shift+f6",
"mac": "shift+f6",
"command": "editor.action.rename",
"when": "editorHasRenameProvider && editorTextFocus && !editorReadonly"
},keybindings.json (Not working: macOS, Version: 1.52.1)
[
{
"key": "-shift+f6",
"mac": "-shift+f6",
"command": "editor.action.rename",
"when": "editorHasRenameProvider && editorTextFocus && !editorReadonly"
},
]- "contributes.keybindings", https://code.visualstudio.com/api/references/contribution-points#contributes.keybindings
- "Removing a specific key binding rule", https://code.visualstudio.com/docs/getstarted/keybindings#_removing-a-specific-key-binding-rule
- "is it possible to import myown custom keymap from Intellij Idea to vscode?", is it possible to import myown custom keymap from Intellij Idea to vscode? kasecato/vscode-intellij-idea-keybindings#120
- "importer", Importer kasecato/vscode-intellij-idea-keybindings#194
Metadata
Metadata
Assignees
Labels
No labels