obsidian-folder-note-plugin icon indicating copy to clipboard operation
obsidian-folder-note-plugin copied to clipboard

[Feature Request] Folder Items link to Folder Note

Open thomasdwood opened this issue 2 years ago • 2 comments

Would love it if a folder idem in a ccard view would link to the folder note for that folder when clicked.

thomasdwood avatar Nov 16 '22 03:11 thomasdwood

+1

ReeceMIRV avatar Jan 03 '23 01:01 ReeceMIRV

You can edit the .obsidian/folder-note-plugin/main.js, after line 440, insert that

                        subFolderName = subFolderPath.split('/').pop();
                        card.setTitleLink(subFolderPath + "/" + subFolderName + ".md");

then you can have this feature. I just make a simple test, maybe some corner cases have bug.

The folder notes name I use is the folder name. You may edit it.

I want to make a PR some days later.

reticenceji avatar Feb 07 '23 08:02 reticenceji