Skip to content

Commit f89fc83

Browse files
committed
bugfix: add missing emojis to WIDTH_2_SINGLE for box alignment
Added 📁 (FILE FOLDER), 🌿 (HERB), and 📝 (MEMO) to WIDTH_2_SINGLE set. These emojis are used in cleanup_handler but were missing from the display width calculation, causing 1-character misalignment on lines containing these emojis.
1 parent 0456366 commit f89fc83

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

plugin/hooks/skill_handlers/status_handler.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
WIDTH_2_SINGLE = {
2626
'📊', '📦', '🎯', '📋', '🏆', '🧠', '🐱', '🧹', '🤝',
2727
'✅', '🔍', '👀', '🔭', '⏳', '⚡', '🔒', '✨', '✦',
28-
'🔄', '🔳', '🚫', '🚧', '🚀'
28+
'🔄', '🔳', '🚫', '🚧', '🚀',
29+
# Added for cleanup_handler
30+
'📁', '🌿', '📝',
2931
}
3032

3133

0 commit comments

Comments
 (0)