Commits

76b7757b4a759620f775e6d3b76d210063d166a4
Switch branches/tags
All users
All time
October 2025
Su Mo Tu We Th Fr Sa
28 29 30 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

Commits on October 9, 2025

  1. mfwolffe committed

Commits on August 28, 2025

  1. Stage all Phase 10 POSIX compliance implementation
    Complete implementation of full POSIX.1-2017 compliance features:
    - All POSIX required built-ins (type, unset, readonly, shift, etc.)
    - Complete parameter expansion (word, , etc.)
    - Positional parameters (, , 0, , ) with shift support
    - Field splitting with
    espadonne committed
  2. Comprehensive README update for v2.0.0
    Enterprise-grade documentation showcasing full POSIX compliance:
    - Complete POSIX built-ins and parameter expansion coverage
    - Advanced feature examples (coprocesses, file descriptors, job control)
    - Real-world scripting examples for system administration
    - Performance monitoring and architectural details
    - Professional installation and migration guidelines
    espadonne committed
  3. Phase 6.1: Implement script sourcing (source/. command)
    ✅ Features Added:
    • Complete script sourcing implementation via source/. commands
    • Deferred execution system to avoid circular dependencies
    • Proper file existence and permissions checking
    • Line-by-line script execution with full shell features
    • Comment skipping and empty line handling
    • History integration for sourced commands
    • Exit handling to stop script execution properly
    
    🔧 Technical Implementation:
    • Added source_file and should_source fields to shell_state_t
    • Created process_source_file() subroutine in main shell loop
    • Enhanced builtin_source() with queuing mechanism
    • Fixed Makefile dependencies to resolve circular issues
    • Maintained compatibility with both 'source' and '.' commands
    
    🧪 Testing:
    • Verified script execution with variables, echo, pwd commands
    • Confirmed both 'source' and '.' command aliases work
    • Tested proper variable persistence after script execution
    
    🎯 Phase 6 Progress: 1/5 features complete
    Next: Command substitution implementation
    
    🤖 Generated with [Claude Code](https://claude.ai/code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
    espadonne committed

Commits on August 27, 2025

  1. Phase 5: Complete advanced line editing features implementation
    - Add comprehensive cursor movement commands (Ctrl+A/E for Home/End, Ctrl+B/F)
    - Implement intelligent kill buffer system for cut/paste operations
    - Create advanced text manipulation (Ctrl+K kill-to-end, Ctrl+U kill-line, Ctrl+W kill-word)
    - Add yank functionality (Ctrl+Y) to paste previously killed text with proper positioning
    - Implement screen clearing with intelligent redraw system (Ctrl+L)
    - Enhance input state management with kill buffer tracking and length management
    - Add smart word boundary detection for sophisticated word-based operations
    - Create seamless integration with existing history navigation and tab completion
    - Update comprehensive help system documenting all interactive editing features
    
    FINAL IMPLEMENTATION: Complete professional readline functionality
    Your Fortran shell now provides full bash-like line editing capabilities:
    • Complete cursor control with Home/End and character movement
    • Professional text manipulation with kill/yank operations
    • Smart word operations with boundary detection
    • Visual polish with screen clearing and redraw
    • Seamless integration across all interactive features
    
    All 5 phases complete - modern terminal editing experience achieved! 🎉
    
    🤖 Generated with [Claude Code](https://claude.ai/code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
    espadonne committed
  2. Phase 4: Implement smart tab completion with filesystem integration
    - Completely rewrite tab completion system with intelligent context awareness
    - Add enhanced command completion supporting builtin + common system commands
    - Implement real filesystem integration using ls command execution and parsing
    - Create smart pattern matching and filtering for both commands and files
    - Add comprehensive directory navigation support (./,../) and path completion
    - Integrate seamlessly with existing input state management and history system
    - Add visual feedback system for multiple completion options with proper display
    - Implement automatic single-match completion and common-prefix matching
    - Support both relative and absolute path completion with proper escaping
    
    Interactive tab completion now provides bash-like functionality:
    • TAB on partial commands shows matching builtins and system commands
    • TAB on partial paths scans filesystem and shows matching files/directories
    • Multiple TAB presses display all available options in organized format
    • Smart completion completes common prefixes when multiple matches exist
    • Full integration with cursor positioning and line editing capabilities
    
    🤖 Generated with [Claude Code](https://claude.ai/code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
    espadonne committed
  3. Phase 3: Add arrow key navigation and history browsing
    - Enhance input state with history position tracking and original buffer preservation
    - Implement up/down arrow key detection and navigation through command history
    - Add automatic exit from history mode when typing or editing
    - Create proper history navigation with position management and fallback
    - Fix history storage to work in both interactive and non-interactive modes
    - Add comprehensive history display with empty history handling
    - Maintain cursor positioning and line redraw during history browsing
    
    Interactive input now supports full bash-like history navigation:
    • Up arrow: Navigate to previous commands
    • Down arrow: Navigate forward in history
    • Typing: Exit history mode and continue editing
    • Seamless integration with existing cursor movement
    
    🤖 Generated with [Claude Code](https://claude.ai/code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
    espadonne committed
  4. Phase 2: Implement character-by-character input handling
    - Add enhanced readline function with raw mode support
    - Implement input state management with buffer and cursor tracking
    - Add basic character handling for printable characters and backspace
    - Implement escape sequence detection framework for special keys
    - Add cursor movement support (left/right arrows)
    - Create line redraw functionality for complex editing scenarios
    - Maintain fallback compatibility for non-interactive mode
    - Add support for common control keys (Ctrl+C, Ctrl+D)
    
    Interactive input now processes individual keystrokes, enabling
    proper cursor movement and preparing foundation for history navigation
    and advanced editing features.
    
    🤖 Generated with [Claude Code](https://claude.ai/code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
    espadonne committed
  5. Phase 1: Add terminal control foundation for enhanced input handling
    - Add termios structure and constants for terminal control
    - Implement C bindings for tcgetattr, tcsetattr, and raw mode functions
    - Create high-level functions: enable_raw_mode, restore_terminal, read_single_char
    - Add ANSI escape sequence constants for cursor control
    - Implement 'rawtest' builtin command to test raw mode functionality
    - Prepare foundation for character-by-character input processing
    
    This enables the shell to capture individual keystrokes and detect special
    key sequences like arrow keys, preparing for enhanced readline functionality.
    
    🤖 Generated with [Claude Code](https://claude.ai/code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
    espadonne committed

Commits on August 26, 2025

  1. espadonne committed
  2. espadonne committed
  3. espadonne committed

Commits on August 25, 2025

  1. espadonne committed
  2. espadonne committed
  3. espadonne committed
  4. espadonne committed
  5. espadonne committed
  6. espadonne committed
  7. espadonne committed