Skip to content
Back to documentation

Features

Dynamic Variables: Date, Time, Clipboard, Cursor

Learn how to use SlashSnip dynamic variables — {{date}}, {{time}}, {{clipboard}}, and {cursor} — to make snippets adapt at insert time.

Published March 14, 2026Updated March 14, 2026

SlashSnip already supports a practical variable set for browser-first work.

Current markers

  • {cursor}
  • {{date}}
  • {{time}}
  • {{clipboard}}

Example: support reply

Hi,

Thanks for the report on {{date}}.
I reviewed the details and copied the latest context below:

{{clipboard}}

Next step: {cursor}

Why {cursor} matters

{cursor} is not decoration. It turns a fixed snippet into an editable starting point.

Use it when:

  • the opening and structure are repetitive;
  • the last sentence or next step changes each time;
  • you want the caret placed exactly where the custom part begins.

When to keep variables simple

Variables are most useful when the base text is already stable.

Good pattern:

  • short reusable structure;
  • one or two changing values;
  • clear cursor landing spot.

Bad pattern:

  • a huge paragraph with five moving parts;
  • unclear ownership over which parts should be edited manually;
  • lots of site-specific assumptions.

Start with small, repeatable blocks and only add more dynamic pieces when the workflow proves it needs them.

Continue the workflow

Browse related articles