Home Explore Blog CI



nushell

commands/categories/plugin.md
d02746f246bc324acc71b062982a808f2e4b91464122ccbc00000003000002e6
---
editLink: false
contributors: false
---

# Plugin

<script>
  import pages from '@temp/pages'
  export default {
    computed: {
      commands() {
        return pages
          .filter(p => p.path.includes('/commands/docs/'))
          .filter(p => p.frontmatter.categories.includes('plugin'))
          .sort((a,b) => (a.title > b.title) ? 1 : ((b.title > a.title) ? -1 : 0));
      }
    }
  }
</script>

<table>
  <thead>
    <tr>
      <th>Command</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr v-for="command in commands">
       <td><a :href="$withBase(command.path)">{{ command.title }}</a></td>
       <td style="white-space: pre-wrap;">{{ command.frontmatter.usage }}</td>
    </tr>
  </tbody>
</table>

Chunks
029dff39 (1st chunk of `commands/categories/plugin.md`)
Title: Plugin Commands
Summary
This document provides a comprehensive listing of available commands specifically categorized as 'plugin' commands. It presents the commands in a structured table format for easy reference. The table includes two key columns: 'Command' and 'Description'. The 'Command' column displays the name of each plugin command as a clickable link, directing users to a dedicated page with more detailed information about that specific command. The 'Description' column offers a concise explanation of the command's purpose and usage. This allows users to quickly understand the functionality of each plugin command and determine its relevance to their needs. This section is automatically generated and kept up-to-date.