https://github.com/dro21/coda
Coda - A lightweight customizable text and code editor written in modern C++ and Qt.
https://github.com/dro21/coda
cpp editor notes qss qt qt5
Last synced: about 2 months ago
JSON representation
Coda - A lightweight customizable text and code editor written in modern C++ and Qt.
- Host: GitHub
- URL: https://github.com/dro21/coda
- Owner: DRo21
- License: mit
- Created: 2025-05-24T18:06:39.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-25T17:18:21.000Z (about 1 year ago)
- Last Synced: 2025-06-18T13:06:28.487Z (about 1 year ago)
- Topics: cpp, editor, notes, qss, qt, qt5
- Language: C++
- Homepage:
- Size: 45.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Coda
**Coda** is a lightweight, cross-platform text editor written in modern C++ and Qt. It aims to provide a clean, fast, and extensible editing experience with a focus on code and plain text.
---
## Features
- Open, edit, and save text files
- Clean Qt-based GUI
- Cross-platform: Linux, macOS, Windows (via Qt)
- Written in C++20 with a modular, extensible architecture
---
## Build Instructions
### Prerequisites
- **C++20 compiler** (e.g., GCC 11+, Clang 12+, MSVC 2019+)
- **CMake 3.16+**
- **Qt 5** (Widgets module)
### Build Steps
```bash
# Clone the repository
git clone https://github.com/DRo21/Coda.git
cd Coda
# Create a build directory
mkdir build
cd build
# Configure and build
cmake ..
make
# Run the application
./Coda