{"id":19129753,"url":"https://github.com/syohex/tdd-status-mode-line","last_synced_at":"2026-03-01T06:33:25.875Z","repository":{"id":66980229,"uuid":"46649973","full_name":"syohex/tdd-status-mode-line","owner":"syohex","description":"TDD status on the Emacs mode line","archived":false,"fork":false,"pushed_at":"2015-11-22T22:29:57.000Z","size":41,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-13T06:03:40.506Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Emacs Lisp","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"purcell/tdd-status-mode-line","license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/syohex.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-11-22T06:53:50.000Z","updated_at":"2023-07-15T08:14:02.000Z","dependencies_parsed_at":"2023-03-11T00:29:55.152Z","dependency_job_id":null,"html_url":"https://github.com/syohex/tdd-status-mode-line","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/syohex/tdd-status-mode-line","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syohex%2Ftdd-status-mode-line","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syohex%2Ftdd-status-mode-line/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syohex%2Ftdd-status-mode-line/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syohex%2Ftdd-status-mode-line/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/syohex","download_url":"https://codeload.github.com/syohex/tdd-status-mode-line/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syohex%2Ftdd-status-mode-line/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29962025,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T05:59:08.471Z","status":"ssl_error","status_checked_at":"2026-03-01T05:58:04.208Z","response_time":124,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T06:08:24.077Z","updated_at":"2026-03-01T06:33:25.848Z","avatar_url":"https://github.com/syohex.png","language":"Emacs Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"TDD status mode-line widget\n===========================\n\n[![Build Status](https://travis-ci.org/algernon/tdd-status-mode-line.png?branch=master)](https://travis-ci.org/algernon/tdd-status-mode-line)\n\nThis little package implements a mode-line widget to track one's\ncurrent test-driven development state (*FAIL*, *PASS*, or *REFACTOR*).\nFully customisable faces and states and all that. The idea is based on\na [similar solution for Vim][athos-tdd-vim].\n\n [athos-tdd-vim]: https://github.com/attilammagyar/dotfiles/commit/3f0df4d86356ea33ca6054924834216ea41f20a5\n\n![Screenshot](https://raw.github.com/algernon/tdd-status-mode-line/master/data/screenshot.png)\n\nInstallation\n------------\n\nOnce the package is downloaded, either via a git checkout or simply\nsaving the `tdd-status-mode-line.el` file somewhere on your load path,\nsimply require it and enable one of the two minor modes it provides.\n\nThe package is also available from [Marmalade](http://marmalade-repo.org/)\nand [MELPA](http://melpa.milkbox.net/):\n\n```lisp\n(require 'package)\n;; Use one or both of the following two lines\n(add-to-list 'package-archives '(\"marmalade\" . \"http://marmalade-repo.org/packages/\"))\n(add-to-list 'package-archives '(\"melpa\" . \"http://melpa.milkbox.net/packages/\"))\n(package-initialize)\n(package-install 'tdd-status-mode-line)\n\n(require 'tdd-status-mode-line)\n```\n\nUsage\n-----\n\nThe package defines two minor modes, only one of which should be\nenabled at a time, and switching between them is not supported. Both\nof them provide the same key bindings:\n\n * `C-x t n` advances the state (from none to *FAIL*, then to *PASS*\n   and onto *REFACTOR*, and finally back to *FAIL*).\n * `C-x t p` steps the state back (from *PASS* to *FAIL*, etc).\n * `C-x t c` clears the state and hides the widget.\n\nThe two minor modes are `tdd-status-minor-mode` and\n`tdd-status-global-mode`, where the first enables the mode for the\ncurrent buffer only and will track the TDD state on a per-buffer basis\nfrom that point on; the second enables the mode globally, with global\ntracking.\n\nTo use the buffer-local mode of operation, place something like this\nin your init file:\n\n```lisp\n(require 'tdd-status-mode-line)\n(add-hook 'prog-mode-hook 'tdd-status-minor-mode)\n```\n\nTo enable it globally, use something like the following:\n\n```lisp\n(require 'tdd-status-mode-line)\n(tdd-status-global-mode)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsyohex%2Ftdd-status-mode-line","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsyohex%2Ftdd-status-mode-line","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsyohex%2Ftdd-status-mode-line/lists"}