From 8474103c6ec0a5c6e935e353de39317ff2d3efe1 Mon Sep 17 00:00:00 2001 From: Longwu Ou Date: Thu, 17 Oct 2024 11:03:27 -0400 Subject: [PATCH] Do not deduplicate aliases in a single note --- lua/obsidian/commands/titles.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lua/obsidian/commands/titles.lua b/lua/obsidian/commands/titles.lua index 907998c40..9c6d92dfb 100644 --- a/lua/obsidian/commands/titles.lua +++ b/lua/obsidian/commands/titles.lua @@ -32,10 +32,6 @@ local function map_title_to_notes(notes) end end - for title, notes_share_title in pairs(title_to_notes) do - title_to_notes[title] = util.tbl_unique(notes_share_title) - end - return title_to_notes end