Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

add ac-ispell article #92

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
syohex merged 1 commit into master from ac-ispell
Apr 18, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added images/auto-complete/ac-ispell/ac-ispell.png
View file Open in desktop
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
[フレーム]
68 changes: 68 additions & 0 deletions packages/auto-complete/ac-ispell.md
View file Open in desktop
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
---
layout: page
title: "ac-ispell.el"
description: "ispellの auto-complete source"
package: true
category: "auto-complete"
tags: ["auto-complete"]
---
{% include JB/setup %}

## 概要

[ac-ispell.el](https://github.com/syohex/emacs-ac-ispell)は ispellの `auto-complete` sourceです.
各種単語辞書の中から補完を行うことができます. キャメルケースやすべて大文字の単語の補完も行うことが
できます.


## スクリーンショット

![screenshot1](/images/auto-complete/ac-ispell/ac-ispell.png)

## 必要要件

- Emacs 23 or higher
- auto-complete


## インストール方法

`MELPA`からインストールすることができます.

```
M-x package-install ac-ispell
```

## 設定

#### `ac-ispell-requires`(Default `3`)

補完を開始する最小文字数.


#### `ac-ispell-setup`

`auto-complete` sourceのセットアップを行う. `ac-ispell-setup`を呼び出す前に
設定をする必要がある.


#### `ac-ispell-ac-setup`

ispellの auto-complete sourceを `ac-sources`に追加する.
また `auto-complete-mode`を有効にする.


## 設定例

```lisp
;; 4文字以上の場合, 補完するようにする
(custom-set-variables
'(ac-ispell-requires 4))

(eval-after-load "auto-complete"
'(progn
(ac-ispell-setup)))

(add-hook 'git-commit-mode-hook 'ac-ispell-ac-setup)
(add-hook 'mail-mode-hook 'ac-ispell-ac-setup)
```

AltStyle によって変換されたページ (->オリジナル) /