rust-filesearch 0.1.0

Fast developer tools: fexplorer (file explorer) and px (project switcher with fuzzy search and frecency)
Documentation
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>File Explorer Results</title>
    <style>
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; margin: 40px; background: #f5f5f5; }
        .container { max-width: 1200px; margin: 0 auto; background: white; padding: 30px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
        h1 { color: #333; margin-top: 0; }
        .summary { background: #e8f4f8; padding: 15px; border-radius: 4px; margin-bottom: 20px; }
        .summary strong { color: #0066cc; }
        table { width: 100%; border-collapse: collapse; margin-top: 20px; }
        th { background: #0066cc; color: white; padding: 12px; text-align: left; font-weight: 600; }
        td { padding: 10px 12px; border-bottom: 1px solid #e0e0e0; }
        tr:hover { background: #f8f8f8; }
        .file-path { font-family: 'Monaco', 'Menlo', monospace; color: #0066cc; }
        .dir { color: #666; font-weight: 600; }
        .file { color: #333; }
        .symlink { color: #8b4513; font-style: italic; }
    </style>
</head>
<body>
    <div class="container">
        <h1>File Explorer Results</h1>
        <div class="summary">
            <strong>Total Files:</strong> 9 &nbsp;&nbsp;
            <strong>Total Size:</strong> 61.05 KiB
        </div>
        <table>
            <thead>
                <tr>
                    <th>Path</th>
                    <th>Size</th>
                    <th>Modified</th>
                    <th>Type</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td class="file-path dir">.</td>
                    <td>-</td>
                    <td>2025-11-08 18:58</td>
                    <td>Dir</td>
                </tr>
                <tr>
                    <td class="file-path file">./DX_WORKFLOWS.md</td>
                    <td>18.36 KiB</td>
                    <td>2025-11-08 18:36</td>
                    <td>File</td>
                </tr>
                <tr>
                    <td class="file-path file">./Cargo.toml</td>
                    <td>2.96 KiB</td>
                    <td>2025-11-08 18:57</td>
                    <td>File</td>
                </tr>
                <tr>
                    <td class="file-path file">./HOW_TO_TEST.md</td>
                    <td>7.87 KiB</td>
                    <td>2025-11-08 18:30</td>
                    <td>File</td>
                </tr>
                <tr>
                    <td class="file-path file">./install.sh</td>
                    <td>528 B</td>
                    <td>2025-11-08 18:58</td>
                    <td>File</td>
                </tr>
                <tr>
                    <td class="file-path file">./VERIFIED_COMMANDS.md</td>
                    <td>6.22 KiB</td>
                    <td>2025-11-08 18:43</td>
                    <td>File</td>
                </tr>
                <tr>
                    <td class="file-path file">./TESTING.md</td>
                    <td>10.28 KiB</td>
                    <td>2025-11-08 00:27</td>
                    <td>File</td>
                </tr>
                <tr>
                    <td class="file-path file">./morning_changes.html</td>
                    <td>0 B</td>
                    <td>2025-11-08 18:58</td>
                    <td>File</td>
                </tr>
                <tr>
                    <td class="file-path file">./test_simple.sh</td>
                    <td>4.57 KiB</td>
                    <td>2025-11-08 00:28</td>
                    <td>File</td>
                </tr>
                <tr>
                    <td class="file-path file">./COMMAND_REFERENCE.md</td>
                    <td>10.28 KiB</td>
                    <td>2025-11-08 18:41</td>
                    <td>File</td>
                </tr>
            </tbody>
        </table>
    </div>
</body>
</html>