1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ac-slimeでfuzzy補完の候補を出力する方法

Last updated at Posted at 2015-06-06

ac-slimeでFuzzy補完の結果を選択候補に出力できると知ったので備忘録がてら記載します。

1.設定内容
emacsのinit.elに対して

init.el
(slime-setup '(slime-repl slime-fancy slime-banner slime-fuzzy slime-highlight-edits))
(require 'ac-slime)
(add-hook 'slime-mode-hook (lambda () (set-up-slime-ac t)))
(add-hook 'slime-repl-mode-hook (lambda () (set-up-slime-ac t)))

のように記載します。

2.スクリーンショット

スクリーンショット 2015-06-07 0.27.28.png

pananaだけで「pathname-name」が補完候補に出ました。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?