- Fix ? keybinding requiring SHIFT modifier (was key_eq, now key_eq_shift)
- Update help dialog with complete keybindings for all modes
- Use proper Ctrl+X notation instead of ^X or Ctrl+X mixed case
- Organize help by LIST MODE, EDIT MODE, GLOBAL sections
- Fix column alignment for consistent display
- Change enter_edit_mode to take Entry by value instead of reference
- Optimize TextArea initialization with TextArea::from() for message
- Reduce clone operations in navigation paths (detail.rs, list.rs, actions/mod.rs)
- Remove duplicate dead code from list.rs edit conflict
- Fix syntax error (extra } in state.rs)
- All 78 tests pass, clean clippy output
- Simplify draw_entry_list by rendering block separately, not wrapping List
- Remove double block rendering that caused title to consume item row
- Fix mouse click row calculation for correct entry selection
- Fix scrollbar area to match visible items height exactly
- Remove unused render_list_scrollbar function
- Adjust scroll trigger condition to use visible_height - 1
- Add CTRL+P/CTRL+N to navigate to prev/next entry in edit mode
- Show confirmation dialog when navigating with unsaved changes
- Add NavigateDirection enum and NavigateConfirm dialog variant
- Add pending_navigation state for dialog confirmation flow
- Refactor navigation into navigate_to_entry helper function
- Add help text for new keybindings in detail view help line
- Fix tags/mentions display to work when only one exists
- Add scrolling support to entry list with scrollbar indicator
- Fix CSV import to parse tags/mentions from message content
- Verify and update tags/mentions when opening entries for edit
- Refactor draw_entry_list to fix too_many_lines clippy warning
- Created actions/ module with save, load, delete business logic
- Created inputs/keycodes.rs with 30+ keybinding helper functions
- Separated business logic from UI/event handling
- Added 28 new unit tests and 8 integration tests
- Fixed bug: save now requires ctrl+s not just 's'
- Reduced ui/mod.rs from 618 to ~290 lines total