Skip to content

sdm-lang/emacs-sdml-ispell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SDML mode spell-checking for Emacs

SDML Logo Text

This package provides selective spell checking using ispell for SDML - the Simple Domain Modeling Language buffers.

Following the behavior of flyspell-prog-mode, this mode only checks the nodes corresponding to comments and strings.

Installing

Install is easiest from MELPA, here's how with use-package. Note the hook clause to ensure this minor mode is always enabled for SDML source files.

(use-package sdml-ispell
  :after (ispell sdml-mode)
  :hook (sdml-mode . sdml-ispell-mode)

Or, interactively; M-x package-install RET sdml-ispell RET

Bindings

  • C-c C-s s -- spell check the item at point
  • C-c C-s C-s -- spell check all items in the buffer

Contributing

This package includes an Eldev file and the following MUST be run before creating any PR.

  • eldev lint
  • eldev doctor
  • eldev package --load-before-compiling --stop-on-failure --warnings-as-errors
  • eldev test
  • eldev test --undercover auto,coveralls,merge,dontsent -U simplecov.json
  • eldev release -nU 9.9.9

The script eldev-check.sh may be useful to you if you do not have your own Eldev workflow.

License

This package is released under the Apache License, Version 2.0. See the LICENSE file in this repository for details.

Changes

The 0.1.x series are all pre-release and do not appear in ELPA/MELPA.