Template Variables
Snipset's template variables turn simple text snippets into dynamic, context-aware automations.
| Variable | Description | Example Output |
|---|---|---|
#{} | Inserts the current clipboard content | [pasted text] |
#{} / #{} | Current date with optional formatting | April 22, 2026 |
#{} / #{} | Current time with optional formatting | 14:30 |
#{} | Places the text cursor here after expansion | | |
#{} | Generates text using local Ollama AI | [Generated explanation] |
#{} | Executes PowerShell and inserts the output | Thursday |
#{} | Simulates a key press | [Tab] |
Basic Variables
#{clipboard}— Inserts the current clipboard content.#{cursor}— Places the cursor at a specific position after expansion.
Date & Time
#{date}/#{date:format}#{time}/#{time:format}#{date:+1d}— Supports date math
AI & Scripting
#{ai:prompt}— Sends prompt to local Ollama model#{powershell:cmd}— Executes a PS command#{rhai:expr}— Evaluates a Rhai script
Key Simulation
#{key:name}— Simulates keypress (e.g.tab,enter)#{shortcut:keys}— Simulates shortcut (e.g.ctrl+a)#{snippet:keyword}— Chains another snippet