Requiert les plugins multiCommand et changeLanguageMode.
A rajouter dans le fichier settings.json
:
"multiCommand.commands": [
{
"command": "multiCommand.pasteAndFormatJSON",
"label": "pasteAndFormatJSON",
"description": "Copie le contenu du clipboard dans un nouveau fichier et applique le formatage JSON",
"sequence": [
"workbench.action.files.newUntitledFile",
{
"command": "changeLanguageMode.change",
"args": "json"
},
"editor.action.clipboardPasteAction",
"editor.action.formatDocument"
]
}
]