Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 881 Bytes

File metadata and controls

42 lines (30 loc) · 881 Bytes
title attr search-terms
categories core
version 0.103.0
core Attribute for adding search terms to custom commands.
usage Attribute for adding search terms to custom commands.
editLink false
contributors false

attr search-terms for core

Attribute for adding search terms to custom commands.

Signature

> attr search-terms {flags} ...rest

Parameters

  • ...rest: Search terms.

Input/output types:

input output
nothing list<string>

Examples

Add search terms to a custom command

> # Double numbers
    @search-terms multiply times
    def double []: [number -> number] { $in * 2 }