xgqfrms / vscode

:cn: :rocket: Visual Studio Code & VSCode Code Snippets All in One 🎉
https://vscode.xgqfrms.xyz
MIT License
3 stars 1 forks source link

vscode-snippets & sh.json #39

Open xgqfrms opened 3 years ago

xgqfrms commented 3 years ago

vscode-snippets & sh.json

{
  "Bash Shell Template": {
    "prefix": "sh",
    "body": [
      "#!/usr/bin/env bash",
      "",
      "# ",
      "# @author xgqfrms",
      "# @license MIT",
      "# @copyright xgqfrms",
      "# @created 2020-01-0$1",
      "# ",
      "# @description $2",
      "# @augments $3",
      "# @example $4",
      "# @link $5",
      "# ",
      "",
      "echo \"^-v-^ running ...\"",
      "",
      "",
      ""
    ],
    "description": "Bash Shell Template & code snippets!"
  }
}
xgqfrms commented 3 years ago

https://gist.github.com/xgqfrms/a908b1c60272aa0f772396956526b2c2

xgqfrms commented 3 years ago
{
  "Bash Shell Template": {
    "prefix": "sh",
    "body": [
      "#!/usr/bin/env bash",
      "",
      "# ",
      "# @author xgqfrms",
      "# @license MIT",
      "# @copyright xgqfrms",
      "# @created 2020-01-0$1",
      "# ",
      "# @description $2",
      "# @augments $3",
      "# @example $4",
      "# @link $5",
      "# ",
      "",
      "echo \"^-v-^ running ...\"",
      "echo 🎉 emoji ^-v-^",
      "echo \"🎉 emoji ^-v-^\"",
      "",
      "",
      ""
    ],
    "description": "Bash Shell Template & code snippets!"
  }
}