Skip to main content

ccm — cacamacs

A small terminal text editor with Emacs key bindings, built on the gtcaca libcaca TUI toolkit and its editor widget. It shows off the widget's colourization, folding, annotations, autocompletion, search/replace and a VSCode-style language-extension model.

ccm [file | directory] [language-configuration.json]
  • A file opens in the editor.
  • A directory opens the file browser (also C-x d).
  • An optional explicit language-configuration.json forces that config.

It also has a diagram mode (M-x diagram): a drag-and-drop canvas for ASCII diagrams. Pick a shape from the pane on the left — box, rounded, diamond, circle, ellipse, cloud, cylinder, hexagon, actor or free text — drop it on the canvas with the mouse or the keyboard, link any two by clicking one then the other, draw plain lines and freehand strokes, rub out single characters with the eraser, and colour or dash anything. Drag a band round several objects (or Shift-click them) and they move, restyle and delete together. Leaving drops the finished art into your document at the cursor — plain characters, saved with C-x C-s like anything else — or, with C-x q, a Mermaid graph that GitHub and most Markdown viewers draw for real. C-w keeps a .drawio or .mmd copy that preserves the colours.

                         +-------+              .-----------.
     O                  /         \             |'---------'|
    /|\        +------>+   ok?     +----------->|   store   |
    / \   -----+        \         /             |           |
   user                  +-------+              '-----------'

See docs/README-cacamacs.md for the full key-binding reference and feature tour.

History. ccm started life as apps/cacamacs inside the gtcaca repo, where a copy remains as a worked example of building an app on the toolkit. Active development now happens here, against gtcaca as an ordinary external dependency.

Copy and paste are the system's: C-w/M-w put text on the macOS, Windows or Linux clipboard (and on the terminal's, via OSC 52, so it works over ssh), and C-y yanks whatever another application copied. Large pastes arrive as a single edit rather than as thousands of keystrokes.

Install with pip

Prebuilt binaries are published to PyPI for macOS (Apple Silicon), Linux (x86_64) and Windows (x86_64) — no compiler or Homebrew needed:

pip install cacamacs
ccm            # or: cacamacs

PyPI is used purely as a binary channel (as ruff/cmake/ninja do): the wheel carries the compiled ccm and the libgtcaca/libcaca/oniguruma libraries it needs, made relocatable, plus the sample language extensions so syntax highlighting works out of the box. See packaging/ for how the per-platform wheels are built (packaging/build.sh → packaging/wheel.py, wired up in .github/workflows/release.yml, which publishes on a v* tag).

Building

ccm consumes gtcaca like any third party would: install gtcaca first, then build ccm against it. gtcaca ships a gtcaca.pc, so pkg-config finds it.

# 1. install gtcaca (any one of these):
brew install stricaud/tap/gtcaca         # Homebrew tap
#   …or from a gtcaca checkout:  cmake -S . -B build && cmake --build build && sudo cmake --install build

# 2. build ccm
cmake -S . -B build
cmake --build build

# 3. run it
./run.sh              # builds if needed, then runs build/ccm
./run.sh path/to/file

Requirements: a C compiler, CMake ≥ 3.20, pkg-config, and an installed gtcaca (which pulls in libcaca).

Installing

sudo cmake --install build        # → /usr/local/bin/ccm, share/ccm/ccm-theme.example

Self-contained macOS package

scripts/package-macos.sh builds a .pkg that bundles libgtcaca and libcaca alongside ccm (rewritten to @rpath), so the installed editor needs neither Homebrew nor a system gtcaca:

scripts/package-macos.sh          # → ccm-<version>.pkg

Its postinstall seeds ~/.cacamacs/theme from the bundled sample (never clobbering an existing one).

When the file changes on disk

Edit, save or reopen a file that something else rewrote underneath you and cacamacs asks first, in Emacs' own words — TIDAL.md changed on disk; really edit the buffer? (y, n, r or C-h) on the first keystroke, … has changed since visited or saved. Save anyway? on C-x C-s, Reread from disk? on C-x C-f. M-x revert-buffer rereads on purpose. See docs/README-cacamacs.md.

Markdown

M-x md- then Tab lists a set of helpers for writing prose — md-title and md-subtitle underline a line with === / ---, md-h1…md-h6 make # headings, md-bold / md-italic / md-code / md-strike / md-link mark up the region or the word at point, and md-list / md-ordered / md-task / md-quote / md-hr handle the block-level bits. Each is its own inverse. See docs/README-cacamacs.md.

Configuration

Per-user files live in ~/.cacamacs/ (%APPDATA%\cacamacs\ on Windows).

  • Colours — themes/default (installed as share/ccm/themes/default) is cacamacs' theme, and ~/.cacamacs/theme is applied over it, so a personal theme only names what it changes. Start from docs/ccm-theme.example.

    A theme file carries two kinds of key, and is read twice — once by each half: <widget>_bg / <widget>_fg are the window chrome, which gtcaca layers over its own default; everything else (background, comment, keyword, selection_bg, …) is the editing surface and syntax colours, which cacamacs reads. Each parser ignores the other's keys, so both can live in one file. ccm --warnings reports where themes were looked for.

  • Editor config — run ccm --configure to write ~/.cacamacs/config.json with every setting at its default (tab size, indent, per-language overrides), annotated and ready to edit. It never overwrites an existing one.

  • File log — "logFiles": true in that file appends one line per file opened (O) or written (W) to ~/.cacamacs/files.log, so you can look back over what you worked on. Off by default; see docs/README-cacamacs.md.

  • Language extensions — the VSCode-style grammar/config bundles under examples/extensions/ drive syntax colourization.

Layout

src/            editor sources (cacamacs.c, ui.c, edit.c, search.c, …)
                diagram.c / diagram_model.c — M-x diagram (mode / document)
                lock.c — the "changed on disk" prompts (Emacs' userlock)
docs/           feature docs + the colour-theme sample
examples/       config sample and language extensions
packaging/      cross-platform bundles + pip wheels (build.sh → wheel.py)
scripts/        macOS packaging
CMakeLists.txt  standalone build (finds gtcaca via pkg-config)
run.sh          build-and-run helper

License

Released into the public domain under the Unlicense — do whatever you want with it.

Release files for cacamacs 0.2.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for cacamacs 0.2.3
File Interpreter ABI Platform
cacamacs-0.2.3-py3-none-win_amd64.whl Python 3 none Windows x86-64 Details
cacamacs-0.2.3-py3-none-manylinux_2_35_x86_64.whl Python 3 none Linux glibc 2.35+ x86-64 Details
cacamacs-0.2.3-py3-none-macosx_14_0_arm64.whl Python 3 none macOS 14.0+ ARM64 Details

Total release size: 4.0 MB

Release files / cacamacs-0.2.3-py3-none-win_amd64.whl

Download URL cacamacs-0.2.3-py3-none-win_amd64.whl
Size 1.2 MB
Tags Python 3 Windows x86-64
SHA-256 checksum
How to use checksums
435345022fa6e196be569a825b4dd6767592174d58271aef0796467f658a10b7
BLAKE2b-256 checksum
How to use checksums
0a0a22efa1a44fb7289214209eab5bf75994d9f763b72c319628dcb8ec39ad5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.

Transparency log

Release files / cacamacs-0.2.3-py3-none-manylinux_2_35_x86_64.whl

Download URL cacamacs-0.2.3-py3-none-manylinux_2_35_x86_64.whl
Size 2.1 MB
Tags Linux glibc 2.35+ x86-64 Python 3
SHA-256 checksum
How to use checksums
2ad4ebdba22c3afc872f029764ddbc9a8fc849d360391d926a03e5248da05ae8
BLAKE2b-256 checksum
How to use checksums
11bb55824cf9f2da20efbbc1be54de38d3f79088ea8c362783e6990e891c5d3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.

Transparency log

Release files / cacamacs-0.2.3-py3-none-macosx_14_0_arm64.whl

Download URL cacamacs-0.2.3-py3-none-macosx_14_0_arm64.whl
Size 768.4 kB
Tags Python 3 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
66ff58cb25ad961cbf66056ea632433da3a68cdc632c0fb0ab43789418ab030a
BLAKE2b-256 checksum
How to use checksums
0d3c816c666792def50adfd562f8b8e8cceba14f04e297a58649fd986227f15f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.

Transparency log

Release history Release notifications | RSS feed

0.2.5

3 release files

0.2.4

3 release files

This release

0.2.3 This release

3 release files

0.2.2

3 release files

0.2.1

3 release files

0.2.0

3 release files

0.1.9

3 release files

0.1.8

3 release files

0.1.7

3 release files

0.1.6

3 release files

0.1.5

3 release files

0.1.4

3 release files

0.1.3

3 release files

0.1.2

3 release files

0.1.1

3 release files

0.1.0

3 release files

0.0.9

3 release files

0.0.8

3 release files

0.0.7

3 release files

0.0.6

3 release files

0.0.5

3 release files

0.0.4

3 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page