Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ruda/macspell

MacSpell is a spell checker designed on Cocoa's spell-checking facilities.
https://github.com/ruda/macspell

emacs macos python spelling

Last synced: 3 months ago
JSON representation

MacSpell is a spell checker designed on Cocoa's spell-checking facilities.

Awesome Lists containing this project

README

        

MacSpell is a spell checker designed on Cocoa's spell-checking facilities.

## Features

* Pure command line utility
* Interactive spelling checker capability
* Can act as Ispell replacement (ispell -a)
* All dictionaries included, it uses the dictionaries provided by macOS.

## Installation
```
$ pip install macspell
```

## Usage
```
$ macspell --check README.txt
$ macspell --encoding=latin1 --check LEIAME.txt
```

## Emacs
```elisp
;; MacSpell
(setq ispell-program-name "macspell")
(setq ispell-extra-args '("--encoding=latin1" "--auto-lang=no"))
;(setq ispell-dictionary "english")
```

## Nano
```
set speller "macspell -x -c"
```