- Use symlinked path instead of versioned Cellar path for mu4e
- Add explicit mu4e-mu-binary path for Homebrew on Apple Silicon
- Add transient menu keybinding (C-c m) for mu4e 1.12.9+
- Use message-signature instead of deprecated mu4e-compose-signature
- Remove unused IONOS maildir shortcuts and LKML bookmark
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Major changes:
- Replace Projectile with built-in project.el for project management
- Add comprehensive Org mode configuration with TODO keywords and org-kanban support
- Fix multiple parsing errors and keybinding conflicts
Key improvements:
- Faster startup with built-in project.el (no external dependencies)
- Better integration with Eglot LSP client
- Proper Org TODO keyword highlighting and kanban column ordering
- Fixed unbalanced parentheses in init-completion.el and init-utils.el
- Resolved keybinding conflicts (C-c d g → C-c G d, removed C-u C-c C-r)
- Updated all file paths in init-utils.el to use lisp/ subdirectory
The configuration now loads cleanly without errors and maintains backward
compatibility with most Projectile keybindings (C-c p prefix) while also
supporting the standard project.el bindings (C-x p prefix).
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Implemented non-blocking reload mechanism that processes files
incrementally during idle time to prevent Emacs from freezing.
Changes:
- New default reload-emacs-config: Non-blocking with idle timers
- reload-emacs-config-blocking: Original blocking version
- reload-emacs-config-fast: Uses byte-compiled files for speed
- reload-emacs-config-smart: Only reloads recently changed files
- reload-current-file: Quick reload of current .el file only
Keybindings:
- C-c C-r: Non-blocking reload (new default)
- C-u C-c C-r: Blocking reload (old behavior)
- C-c r: Reload current file
- C-c R: Fast byte-compiled reload
This fixes the lag issue during configuration reload by loading
files one at a time with 0.01s idle gaps between them.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Fixed C-Shift-Left/Right not working for word selection by:
- Creating proper selection functions with region activation
- Using left-word/right-word functions that respect direction
- Adding hooks to ensure bindings persist after CUA mode init
- Setting correct properties for CUA mode compatibility
Also added C-Shift-Up/Down for paragraph selection consistency.
All C-Shift-Arrow combinations now work correctly:
- C-Shift-Left/Right: Select by word
- C-Shift-Up/Down: Select by paragraph
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Major improvements to Emacs configuration:
1. Fixed CUA mode and C-Shift-Arrow selection issues
- Properly configured CUA mode for copy/paste (C-c, C-v, C-x)
- Fixed C-Shift-Arrow word selection that was being intercepted
- Added mode-specific CUA disabling for special modes
2. Replaced Corfu with Company mode
- Removed problematic Corfu configuration causing errors
- Installed and configured Company for stable auto-completion
- Set up proper completion triggers and navigation
3. Integrated standalone fix files into existing configuration
- Merged keybinding-fix.el into relevant config files
- Added diagnostic functions for debugging keybinding issues
- Cleaner organization with fixes in their respective modules
4. Enhanced diagnostics
- Added diagnose-cua-selection for CUA/selection issues
- Added diagnose-key-conflicts for debugging key bindings
- Emergency editing restoration functions preserved
All changes tested and verified working.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>