Hide is a zellij plugin and a CLI providing something of an IDE environment for helix.
The main goal is to provide good environment-agnostic experience through a combination of the plugin and cli, with no shell scripts.
HIDE keeps track of all zellij panes and can focus them, write to them through the plugin regardless of your layout. Or send other commands through the cli.
Warning
This is a very very early stage project. It works on my machine but unless you have all of my specific settings it probably won't on yours. Even the default templates are using fish shell, which not everybody has installed. I advice to observe this from afar only. Also, the name's probably not sticking.
demo_full_size.mov
yazi.toml
[opener]
edit = [
{ run = 'hide-cli pipe edit_file path=$@', block = true },
]
keymap.toml
[manager]
prepend_keymap = [
{ on = "<Enter>", run = "plugin smart-enter" },
{ on = "l", run = "plugin smart-enter" },
{ on = "o", run = "plugin smart-enter" },
{ on = "k", run = "plugin arrow -1" },
{ on = "j", run = "plugin arrow 1" },
{ on = "h", run = "plugin max-parent" },
{ on = "f", run = "plugin smart-filter" }
All of these plugins are official yazi plugins except for max-parent
. max-parent
won't allow yazi to cd to a directory above the directory it was opened with:
main.lua
--- @sync entry
return {
entry = function(_, job)
local root = os.getenv("SESSION_CWD") # Set by the pane's shell
if root == nil or tostring(cx.active.current.cwd) ~= root then
ya.manager_emit("cd", { cx.active.parent.cwd })
end
end,
}
With the following keybinds you'd be able to focus any pane based on its name. Don't forget to load the plugin
config.kdl
keybinds {
shared {
bind "Alt Enter" {
MessagePlugin "hide" {
payload "0focus_pane;type=editor;"
}
}
bind "Alt t" {
MessagePlugin "hide" {
payload "0focus_pane;type=terminal;"
}
}
bind "Alt e" {
MessagePlugin "hide" {
payload "0focus_pane;type=file_explorer;"
}
}
bind "Alt g" {
MessagePlugin "hide" {
payload "0focus_pane;type=lazygit;"
}
}
}
}
plugins {
hide location="/path/to/hide.wasm"
}
No specific helix configs for now, although you can focus or write to panes from within helix as well:
[keys.normal.space.W]
e = ":sh hide-cli pipe focus_pane type=file_explorer"
t = ":sh hide-cli pipe focus_pane type=terminal"
g = ":sh hide-cli pipe focus_pane type=lazygit"
i = ":sh hide-cli pipe write_to_pane type=terminal;data=<esc>echo hi<enter>"
Some changes will have to be contributed to helix or some PRs cherry-picked for the best experience. TBD.
Build the plugin with:
cargo build --target=wasm32-wasip1
Reload it with:
zellij action start-or-reload-plugin hide