Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 848 Bytes

File metadata and controls

41 lines (30 loc) · 848 Bytes
title attr category
categories core
version 0.109.0
core Attribute for adding a category to custom commands.
usage Attribute for adding a category to custom commands.
editLink false
contributors false

attr category for core

Attribute for adding a category to custom commands.

Signature

> attr category {flags} (category)

Parameters

  • category: Category of the custom command.

Input/output types:

input output
nothing string

Examples

Add a category to a custom command

> # Double numbers
    @category math
    def double []: [number -> number] { $in * 2 }