Home Explore Blog CI



nushell

commands/categories/prompt.md
a59f5851aeb6dba0cad9809bc6a3196628413753b033480700000003000002e6
---
editLink: false
contributors: false
---

# Prompt

<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('prompt'))
          .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
79153c67 (1st chunk of `commands/categories/prompt.md`)
Title: Prompt Commands
Summary
This section provides a comprehensive listing of available commands specifically designed for prompt-related functionalities. It presents the commands in a tabular format, making it easy for users to quickly identify and understand their purpose. The table includes two key columns: 'Command' and 'Description'. The 'Command' column displays the name of the command, which is also a clickable link that redirects the user to a dedicated page with more detailed information about that specific command. The 'Description' column provides a concise yet informative explanation of the command's usage and function, allowing users to grasp its purpose at a glance. The commands included in this list are meticulously filtered to ensure that only those categorized under the 'prompt' category are displayed. This ensures that users can efficiently find the relevant commands for their prompt-related tasks. The commands are also sorted alphabetically by title to make it easier to browse the list.