nadavspi/obsidian-relative-line-numbers

Doesn't work well with 1.5.0's new markdown table editor

Opened this issue · 3 comments

When I'm editing a table, the number 1 appears where it shouldn't.

screenshot 2023-11-20T214123Z

NOTE: 1.5.0 is an insider build and has not been released yet.

I think one way to approach this issue, is removing the relative line number inside tables, because there is no use in have relative number inside tables.

huyz commented

My current workaround is to disable gutters in the built-in Obsidian table editor by creating a CSS snippet.

table.table-editor .cm-gutters {
  display: none;
}

I just don't know yet if there will be collateral damage. We'll see…