录制“宏”?或者 Visual Studio Code 中的一系列操作?

Tal*_*viu 24 macros code-snippets visual-studio-code vscode-snippets

我需要这样的东西。一旦我在项目中创建了一个文件夹。以 React 项目为例。我可以选择该文件夹并运行某种宏或一系列操作来执行此操作。

假设文件夹的名称是Component,例如,当播放宏时,它将执行以下操作:

创建一个具有该名称的文件,Component.js该文件将包含某种片段默认内容。创建一个具有该名称的文件,Component.styled.js其中同样包含某种片段默认内容。创建一个名称index.js为 Content: 的文件export { default } from './Component',其中 Component 实际上是文件夹的名称。

我不知道从哪里开始......我已经研究过宏并且我知道如何使用 Visual Studio Code 用户片段,但不确定如何完成这件事。

Mar*_*ark 8

使用名为宏命令的宏扩展,您可以相当轻松地创建文件夹和包含的文件(如果您愿意,可以包含一些默认内容)。但它看起来有点复杂,因为它本质上是在你的settings.json中编写一个扩展,但在操作中它很顺利。安装扩展后,此代码将进入您的settings.json:

"macros": {

  "createReactFolderAndFiles" : [
  
    { 
      "javascript": [

        "const newReactFolder = await window.showInputBox()",  // get the component's name

            // create a object to store various edits, including file creation, deletion and edits
        "const we = new vscode.WorkspaceEdit();",

            // get the workspace folder path + file:/// uri scheme
        "const thisWorkspace = vscode.workspace.workspaceFolders[0].uri.toString();",  // file:///c:/Users/Mark/OneDrive/Test Bed
            // append the new folder name
        "const uriBase = `${thisWorkspace}/${newReactFolder}`;",  // file:///c:/Users/Mark/OneDrive/Test Bed/Test

        // "await window.showInformationMessage(` ${uriBase}`)",  // just handy to check on progress

            // create uri's for the three files to be created
        "let newUri1 = vscode.Uri.parse(`${uriBase}/index.js`);",
        "let newUri2 = vscode.Uri.parse(`${uriBase}/${newReactFolder}.js`);",
        "let newUri3 = vscode.Uri.parse(`${uriBase}/${newReactFolder}.styled.js`);",

        "let newFiles = [ newUri1, newUri2, newUri3];",

        "for (const newFile of newFiles) { let document = await we.createFile(newFile, { ignoreIfExists: false, overwrite: true });};",

        "let styledContent = `first line flush left",   // how to use template literals in this macro
                             "second line will be flush left",
                             "   third line indented`;",

              //  insert text into the top of each file
        "await we.insert(newUri1, new vscode.Position(0, 0), `export { default } from './${newReactFolder}'`);",
        "await we.insert(newUri2, new vscode.Position(0, 0), `my ${newReactFolder}.js content`);",
        "await we.insert(newUri3, new vscode.Position(0, 0), styledContent);",
        
        "await vscode.workspace.applyEdit(we);",  // apply all the edits: file creation and adding text

        "for (const newFile of newFiles) { let document = await vscode.workspace.openTextDocument(newFile); await document.save(); };",
      ]
    }
  ]
},
Run Code Online (Sandbox Code Playgroud)

它允许您在设置中使用 vscode 扩展 api。要运行此宏,请设置键绑定:

{
  "key": "alt+j",
  "command": "macros.createReactFolderAndFiles"
},
Run Code Online (Sandbox Code Playgroud)

它要做的第一件事是弹出一个文件夹名称的输入框。输入 1 并点击Enter

创建一个带有宏命令扩展的 React 文件夹


如果您有想要重复使用的默认内容,您可以存储它并检索它以便在此宏中使用。假设默认内容位于同一工作区中/templates/defaultComponent.txt

这将得到该内容:

  "let defaultContent = await vscode.workspace.fs.readFile(vscode.Uri.parse(`${thisWorkspace}/templates/defaultComponent.txt`));",
Run Code Online (Sandbox Code Playgroud)

并将其添加到您的文件之一:

"await we.insert(newUri3, new vscode.Position(0, 0), defaultContent.toString());",
Run Code Online (Sandbox Code Playgroud)

正如您在演示中看到的,由于某种原因,它总是打开几个新创建的文件 - 我不知道如何防止这种情况。

虽然代码看起来很复杂,但我认为针对不同的文件名或内容修改它很简单。