Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 884 Bytes

File metadata and controls

41 lines (30 loc) · 884 Bytes
title attr search-terms
categories core
version 0.105.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 }