Outliner mode (similar to Logseq, Roam, Dynalist)

Thank you! I’ll try to turn off other plugins and CSS theme. I hadn’t thought of that.

One problem I have with this mode is that Crtl + F ing. It doesn’t open the folded bullets. Altho it maybe more of a folding problem in general, I don’t know.

Also I would appreciate it if compatibility with RTL languages get fixed.

Otherwise it is a awesome plugin, thank you for your efforts

If you see bugs or would like to see some feature, please go to GitHub page and fill the issue there, the author of the plugin doesn’t often visit the forum

1 Like

I’d love if Obsidian integrated the community Outliner plug-in into the product directly (so it’s fully supported).

7 Likes

Looks as if the comunity plug-in would need complete rewriting to work with Codemirror 6.
I don’t know if some features would be added easily (in which case possibility of being added to core might exist). Otherwise quite a wait maybe.

3 Likes

Love your plugin. It would be nice if we can add or make headlines H2, H3, H4 within the outliner without the need to separate the outline then write the headline then start a new outline. As this takes out (or limits) the flexibility of moving section up/down. Keep it going.

3 Likes

Yes, pls consider including headers as part of the outlining hierarchy.

Working with headers: indent/outdent, move up/down

8 Likes

Giving my vote to this idea! Obsidian is awesome and deserves a proper outlining experience <3

1 Like

Perhaps trivial, but in my attempts to make Obsidian more LogSeq-like, I wanted to have the ‘halo’ for folded headers.

Schermafbeelding 2022-05-04 om 15.22.40

It can be achieved with css like this:

.markdown-source-view.mod-cm6 .is-collapsed~.cm-formatting-list .list-bullet:after,
ul>li.is-collapsed::marker {
    color: var(--text-normal);
    -webkit-text-stroke-width: 9px;
    -webkit-text-stroke-color: #333;
}
2 Likes

Thank you for posting this. Not trivial to me. This css is just what I needed. I installed the zoom plugin and I have been trying to get it working better for me. Here is a video of what I got. Looks like Logseq. I’m no expert with css, so this needs cleaned up. If you try the zoom plugin and get this nicer, please post. The hover area is a little funky and close to the fold icon. This snippet is made from the plugin css and what you posted.

Editing to add: It I change the list into a task list, it changes the icons to the checkbox, instead of adding a checkbox. That’s disappointing.

Edited again because I changed the css. When folded, I have a color change.

marker-2022-05-04_16.54.57


.zoom-plugin-bls-zoom .cm-editor .cm-formatting-list-ol {
  cursor: pointer;
}

.zoom-plugin-bls-zoom .cm-editor .cm-formatting-list-ul:hover::before {
  cursor: pointer;
  content: "•";
  font-size: 200%;
      -webkit-text-stroke-width: 9px;
  position: absolute;
  margin-top: -16px;
  margin-left: -10px;
  opacity: 50%;
}

.markdown-source-view.mod-cm6 .cm-formatting-list .list-bullet:after,
ul>li.is-collapsed::marker {
    color: var(--text-normal);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #333;
      margin-top: 9px;
  margin-left: 7px;
      opacity: 20%;
}


.markdown-source-view.mod-cm6 .is-collapsed~.cm-formatting-list .list-bullet:after,
ul>li.is-collapsed::marker {
    color: var(--interactive-accent);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--interactive-accent);
      margin-top: 9px;
  margin-left: 7px;
      opacity: 100%;
}



Also if you wanted to look I posted an issue about the horizontal line, when hoisted (zoomed). I can’t figure out what it is, to get rid of it. Styling issue on horizontal line · Issue #64 · vslinko/obsidian-zoom · GitHub

I think this macro could imitate very well the select all bullet and nested bullet from these other apps.
It’s very useful to me to push whole heading or whole section of nested bullet points with one quick stroke.

Feel free to copy and try it yourself:

imagem

Say Thanks :pray: To Developers From:

  • QuickAdd, Zoom, Editor Commands Remap and Mark and Select.
1 Like