repartee 0.4.0

A modern terminal IRC client built with Ratatui and Tokio
---
category: Configuration
description: Define, list, or remove user aliases
---

# /alias

## Syntax

    /alias [name] [body]
    /alias -<name>

## Description

Define custom command aliases. Aliases expand before execution and support
template variables and command chaining with semicolons.

With no arguments, lists all defined aliases.
With name and body, defines or replaces the alias.
With `-name`, removes the alias (e.g. `/alias -ns`).

Template variables:
- `$0`-`$9` — positional arguments
- `$*` — all arguments
- `$C` — current channel name
- `$N` — current nick
- `$S` — current server label
- `$T` — current buffer name

Cannot override built-in commands.

## Examples

    /alias
    /alias ns /msg NickServ $*
    /alias cs /msg ChanServ $*
    /alias j /join $0; /msg $0 hello everyone
    /alias -ns

## See Also

/unalias