Documentation Index
Fetch the complete documentation index at: https://docs.flumeirc.io/llms.txt
Use this file to discover all available pages before exploring further.
The quickest way to jump around. Accepts buffer numbers, exact names, or partial matches.
/go 3 # jump to window 3
/go #rust # exact match
/go rust # partial match β finds #rust
/go flu # partial match β finds #flume
/go libera # switch to a different server
/go flume # switch to the global flume buffer
Buffer numbers are shown in the buffer list panel (e.g., 1.server, 2.#rust). Partial matching is case-insensitive and matches anywhere in the name.
/buffer
With no args: list all buffers with their numbers and unread counts.
/buffer
1: server
2: #rust (3 unread) *
3: #flume
With a name: switch to that buffer.
/buffer #rust # switch to #rust
/buffer server # switch to server buffer
/switch
Switch to a different connected server. Your buffer position within each server is remembered.
Close the active buffer and switch to the previous one. Channels are also auto-closed when you /part.
Clear the active bufferβs message history. The buffer stays open.
/search
Search the active buffer for a text pattern. All matching lines are highlighted with the search_match_bg/search_match_fg theme colors.
/search error # highlight all lines containing "error"
/search # clear search highlighting
Searching is case-insensitive. Use /search with no args to clear.
/url
/url <N>
/url open <N>
Manage URLs detected in the active buffer.
/url # list last 10 URLs with nick attribution
/url 1 # open the most recent URL in your browser
/url open 3 # open the 3rd most recent URL
URLs are automatically detected in messages and rendered in the chat_url theme color with underline. The /url command lets you list and open them without scrolling.
The browser command is configurable:
/set general.url_open_command open # macOS (default)
/set general.url_open_command xdg-open # Linux (default)
Search emoji shortcodes or show usage info.
/emoji # show usage and common examples
/emoji fire # search: shows π₯ :fire:
/emoji heart # search: shows all heart variants
Using emoji in messages: Type :shortcode: and itβs replaced with the emoji when you send:
:thumbsup: β π :fire: β π₯ :wave: β π
:heart: β β€οΈ :rocket: β π :100: β π―
:tada: β π :coffee: β β :crab: β π¦
Tab completion: Type :thu then press Tab to cycle through matches (:thumbsup: β π, :thumbsdown: β π). Works alongside nick completion β emoji triggers when the word starts with :.
160+ shortcodes available covering smileys, gestures, hearts, symbols, tech, food, nature, animals, celebrations, and flags.
With no args: show the full categorized command list.
With a command name: show detailed help for that specific command.
/help # full command list
/help go # help on /go
/help set # help on /set with all settings
/help server # help on /server with auth examples
/help split # help on split views
/help generate # help on AI generation
/help theme # help on themes with path info
Also shows help text for script-registered commands β scripts provide help via flume.command.register(name, fn, "help text").