README Combiner - VS Code Extension
Combine all README files in your project into a single file with one command.
Features
- 🔍 Automatically finds all README files in your workspace
- 📝 Combines them into a single file with clear separators
- ⚙️ Configurable output file name
- 🎯 Works from Command Palette or right-click context menu
- 🚀 Cross-platform (Windows, macOS, Linux)
Usage
Method 1: Command Palette
- Press
Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (macOS)
- Type "Combine All README Files"
- Press Enter
- Right-click in the Explorer sidebar
- Select "Combine All README Files"
The extension will create a file called allreadme.txt in your workspace root containing all README files.
Extension Settings
This extension contributes the following settings:
readme-combiner.outputFileName: Name of the output file (default: allreadme.txt)
readme-combiner.filePattern: Glob pattern to match README files (default: **/README.md)
Configuration Example
{
"readme-combiner.outputFileName": "combined-docs.txt",
"readme-combiner.filePattern": "**/readme.*"
}
Each README file is separated with:
- A clear separator line (80 equal signs)
- File path information
- Folder path information
- The complete file content
Example:
================================================================================
FILE: /path/to/project/day-1/README.md
FOLDER: /path/to/project/day-1
================================================================================
[README content here]
Requirements
- VS Code version 1.80.0 or higher
- No external dependencies required
How to Install
From VS Code Marketplace (when published)
- Open VS Code
- Go to Extensions (Ctrl+Shift+X)
- Search for "README Combiner"
- Click Install
VS Code Marketplace
Readme Combiner
Contributing
Found a bug or have a feature request? Please open an issue on GitHub!
License
MIT
Enjoy combining your README files! 📚
| |