Skip to content

Instantly share code, notes, and snippets.

@marc-rutkowski
Last active February 4, 2021 11:40
Show Gist options
  • Save marc-rutkowski/ab6ba25c74a307dd3a422071fbc7dd09 to your computer and use it in GitHub Desktop.
Save marc-rutkowski/ab6ba25c74a307dd3a422071fbc7dd09 to your computer and use it in GitHub Desktop.
Truc VScode : copier le contenu du clipboard dans un nouveau fichier et appliquer le formatage JSON

Truc VScode : copier le contenu du clipboard dans un nouveau fichier et appliquer le formatage JSON

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"
      ]
    }
  ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment