No description
  • Emacs Lisp 70.1%
  • HTML 16.7%
  • D 11.5%
  • Makefile 1.7%
Find a file
2024-12-25 18:51:52 +00:00
.github/workflows .github/workflows/test.yml: Add Emacs 29.1 to test matrix 2024-11-26 10:54:26 +00:00
coverage Unbundle undercover.el 2020-08-30 15:53:20 +00:00
tests tests: Fix inconsistent file name introduced in previous commit 2024-12-25 18:51:52 +00:00
tests-todo Add a TODO 2019-11-10 14:38:56 +00:00
.elpaignore add .elpaignore 2024-08-13 18:45:15 +12:00
.gitignore d-mode-test.el: Save actual result to file in case of mismatch 2019-11-10 14:38:51 +00:00
Cask Cask: Remove :git from undercover spec 2022-06-01 19:29:56 +00:00
COPYING Switch to GPL v3 (or later) 2019-11-10 14:38:55 +00:00
d-mode-test.el tests: Replace #min-version with a more generic #condition 2021-01-19 18:45:04 +00:00
d-mode.el Fix indentation of declarations with an align attribute 2024-12-25 18:21:11 +00:00
Makefile Skip coverage analysis when byte-compiling 2019-11-11 23:02:39 +00:00
README.md update GPL version in README.md 2024-08-13 13:43:15 +12:00

Emacs D Mode

Licence Build Status Coverage Status MELPA MELPA Stable

An Emacs major mode for editing D code.

This mode is currently known to work with Emacs 25 and 26. For best results, use Emacs 26.

The best way of installing this major mode, at least for Emacs 26, is to use the packaging system. Add MELPA or MELPA Stable to the list of repositories to access this mode. For those who want only formal, tagged releases use MELPA Stable:

(require 'package)
(add-to-list 'package-archives
         '("melpa-stable" . "https://stable.melpa.org/packages/") t)
(package-initialize)

For those who want rolling releases as they happen use MELPA:

(require 'package)
(add-to-list 'package-archives
         '("melpa" . "https://melpa.org/packages/") t)
(package-initialize)

and then use M-x package-list-packages to get to the package listing and install from there. MELPA tracks this Git repository and updates relatively soon after each commit or formal release. For more detail on setting up see MELPA Getting Started.

The master of all the material is the Git repository at https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode .

This software is licenced under GNU General Public Licence version 3.