rvcas/room
{ "createdAt": "2023-07-07T23:15:46Z", "defaultBranch": "main", "description": "A Zellij plugin for quickly searching and switching tabs 🖤", "fullName": "rvcas/room", "homepage": "", "language": "Rust", "name": "room", "pushedAt": "2025-03-30T15:23:12Z", "stargazersCount": 224, "topics": [ "rust", "zellij", "zellij-plugin" ], "updatedAt": "2025-11-18T20:28:53Z", "url": "https://github.com/rvcas/room"}🖤 room
Section titled “🖤 room”A Zellij plugin for quickly searching and switching between tabs.

Tabto cycle through tab listUpandDownto cycle through tab listEnterto switch to the selected tab- Start typing to filter the tab list
EscorCtrl + cto exit- Quick jump to a tab by pressing it’s displayed number
To enable quick jumps, you need to set the config option for it to
quick_jump true. The downside is that you won’t be able to properly filter down tabs that have a number in their name.
I rename my tabs so once I have a lot of them I have to start
counting and then press Ctrl + t then <tab num>. So I wanted something
that let’s me type to filter the tab list and then press enter to jump to the selected tab.
Installation
Section titled “Installation”Download room.wasm from the latest release
mkdir -p ~/.config/zellij/plugins/mv room.wasm ~/.config/zellij/plugins/
You don’t need to keep
room.wasmat this specified location. It’s just where I like to keep my zellij plugins.
Quick Install
Section titled “Quick Install”mkdir -p ~/.config/zellij/plugins && \ curl -L "https://github.com/rvcas/room/releases/latest/download/room.wasm" -o ~/.config/zellij/plugins/room.wasmKeybinding
Section titled “Keybinding”Add the following to your zellij config somewhere inside the keybinds section:
shared_except "locked" { bind "Ctrl y" { LaunchOrFocusPlugin "file:~/.config/zellij/plugins/room.wasm" { floating true ignore_case true quick_jump true } }}You likely already have a
shared_except "locked"section in your configs. Feel free to addbindthere.
The ignore_case defaults to false if absent. If set to true, filtering the tab names ignores
the case of the filter string and the tab name.
Contributing
Section titled “Contributing”If you find any issues or want to suggest ideas please open an issue.
Development
Section titled “Development”Make sure you have rust installed then run:
zellij action new-tab --layout ./dev.kdl