Releases: josephschmitt/zide
v2.3.1 - Fix: Yazi sometimes fails to open files
Stop using block=false in yazi conifg. Seems to sometimes lead to a bug where a yazi process will remain open in the background in a different zellij session and it will stop opening files correctly
v2.3.0 - New “default” layouts with swaps
New
Adds new “default” and “default_lazygit” layouts that replace the “compact” and “wide” layouts with a single layout using swaps. The initial tab contains the classic two column IDE layout, but adding a 3rd pane brings up the option of swapping between the old “compact” layout and the “wide” layout.
Fixed
- Automatic session/tab naming when the directory parameter didn’t have a base name (e.g.
../
) - Fix not correctly reading opening of multiple paths from the file picker
v2.2.2 - Rename `zide-rename-tab` to `zide-rename`
Use zide-rename instead of zide-rename-tab More accurate since we rename more than just the tab
v2.2.1 - Fix session not being renamed
Fix session not being renamed
v2.2.0 - Add `ZIDE_ALWAYS_NAME` env var
When set to true
, new zide sessions or tabs will use the basename of the current working directory. Equivalent to always remembering to use the -N
flag.
v2.1.1 - Fix not naming initial tab on new zide session
Does this by adding a zide-rename-tab
script that is used as a self-closing pane which will call the tab rename zellij action
v2.1.0 - Add option to name new zide sessions or tabs
Can pass the -n, --name
flag to the zide
command which will give any newly created sessions that name, or if you're in an existing session, it'll name the new tab. Alternatively, you can pass the -N
flag to automatically name the session or tab after the directory being opened.
v2.0.0 - Remove ZIDE_EDITOR_CMD_MODE and ZIDE_EDITOR_CD_CMD
In order to be a bit more "batteries included", this release removes those ZIDE_EDITOR_
env vars and replaces them with a getEditorCommand
function which has a mapping of commands to common editors. This will make it so those editors "just work" since they're the 90% use case, with the downside of it not being configurable outside of these editors.
If new editor/command combos are found, they'll have to be added to the mapping to get support.
v1.2.3 - Fix yazi closing and reopening
Adds block = false
to the yazi configs so that it stays open when launching the EDITOR.
v1.2.2 - Fix sleep time to account for longer path strings
Tweak sleep amount between opening a path and a file Depending on the length of the path, we need to wait longer so that zellij has time to write the command out.