From be3efc1fdd9a5a93e6d5b3ef3001fac832011200 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Thu, 25 Sep 2025 22:02:25 +0800 Subject: [PATCH] :art: Improve the behavior of `Jump to the next/previous block of the parent block` in lists https://github.com/siyuan-note/siyuan/issues/15939 Signed-off-by: Daniel <845765@qq.com> --- kernel/model/block.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/kernel/model/block.go b/kernel/model/block.go index c22cafa17..248b13797 100644 --- a/kernel/model/block.go +++ b/kernel/model/block.go @@ -206,10 +206,6 @@ func GetBlockSiblingID(id string) (parent, previous, next string) { } parent = parentBlock.ID - if flb := treenode.FirstChildBlock(parentBlock); nil != flb { - parent = flb.ID - } - if ast.NodeDocument == parentBlock.Type { parent = parentBlock.ID