hdykokd / obsidian-vertical-tabs-view

A plugin for Obsidian that provides a vertical tabs view
MIT License
29 stars 3 forks source link

FR: Add divider to show tabs grouped by workspace splits #84

Open gasparschott opened 5 months ago

gasparschott commented 5 months ago

This would improve clarity. Also, perhaps add styling to wrap long file names and expand height of individual list items to fit.

uwe999 commented 5 months ago

you would just create notes called something like "------"

gasparschott commented 5 months ago

True, but this would have to be done every time the split layout changes, wouldn’t it? And it seems rather messy to have to add notes just for this purpose. I assume your plugin iterates through all the open leaves to create the list; wouldn’t it be possible to add a “first” class to the li corresponding to the first leaf in each split? Thanks.

On May 26, 2024, at 10:59 AM, uwe999 @.***> wrote:

you would just create notes called something like "------"

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>

uwe999 commented 5 months ago

not my plugin, I just tried to find a workaround. I'm now using Obsidian's native bookmark feature - it has a grouping feature and it's easy to rearrange the list

wwjCMP commented 4 months ago

I think this should be implemented, a very practical improvement

hdykokd commented 4 months ago

I once tried to implement this, but due to the current lack of API support for Obsidian's Workspace Layout, syncronizing the tabs is challenging. Therefore, the Vertical Tabs View manages the tabs independently.

It is possible to rearrange the tabs by dynamically generating and saving the Workspace layout, but every time the Workspace layout is saved, the entire screen reloads (causing flickering), which is not acceptable for me.

I will wait for Obsidian to implement the necessary API.