🎨 Improve doc tree Name Alphabet sorting https://github.com/siyuan-note/siyuan/issues/14773

This commit is contained in:
Daniel 2025-05-08 00:48:35 +08:00
parent 949a57d42e
commit 0ef8783ce3
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -87,13 +87,13 @@ func PinYinCompare4FileTree(str1, str2 string) bool {
// 长度不相等的情况下,比较前面相等的部分 // 长度不相等的情况下,比较前面相等的部分
if len(a) < len(b) { if len(a) < len(b) {
if 0 == bytes.Compare(a, b[:len(a)]) { // 前面相等的情况下,比较长度 if 0 == bytes.Compare(a, b[:len(a)]) { // 前面相等的情况下短的在前
return len(a) > len(b[:len(a)]) return true
} }
return bytes.Compare(a, b[:len(a)]) < 0 return bytes.Compare(a, b[:len(a)]) < 0
} }
if 0 == bytes.Compare(a[:len(b)], b) { if 0 == bytes.Compare(a[:len(b)], b) {
return len(a[:len(b)]) > len(b) return false
} }
return bytes.Compare(a[:len(b)], b) < 0 return bytes.Compare(a[:len(b)], b) < 0
} }