Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/ruda/macspell
- Owner: ruda
- License: mit
- Created: 2012-05-03T03:03:21.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2022-08-20T02:00:19.000Z (over 2 years ago)
- Last Synced: 2024-10-19T07:03:50.395Z (4 months ago)
- Topics: emacs, macos, python, spelling
- Language: Python
- Homepage:
- Size: 22.5 KB
- Stars: 9
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
```