auto-complete

ac-emoji for Linux users

We can use emoji fonts other than MacOSX platform. (However MacOSX fonts is good looking :-() Installing Symbola font http://zhm.github.io/symbola/ Download Symbola.ttf and put it into fonts directory such as ~/.fonts. % cd ~/.fonts % curl…

auto-complete source for Rust

Repository https://github.com/syohex/emacs-ac-racer How to use Install rust(https://www.rust-lang.org/install.html) Install racer(https://github.com/phildawes/racer) (defun my/racer-mode-hook () (ac-racer-setup)) (add-hook 'racer-mode-hook…

auto-complete source for Emoji

I uploaded ac-emoji to github. This package provides auto-complete source of Emoji. Image Repository https://github.com/syohex/emacs-ac-emoji I test only MacOSX. Sample configuration I think this package is useful for writing Markdown or g…

auto-complete for Elixir programming

I recommend you to use company-mode for auto completion of Elixir programming. I created ac-alchemist which is auto-complete source of alchemist. Because alchemist provides only company-mode completion. alchemist often changes its API freq…

ac-ispellをリリースしました

ispell/aspellを利用した auto-complete sourceを提供する ac-ispellをリリースしました リポジトリ https://github.com/syohex/emacs-ac-ispell インストール MELPAからインストールできます. 設定 ;; Completion words longer than 4 characters (custom-s…

補完候補をページ単位でスクロールする

popup.elにページ単位で候補を切り替える関数が実装されたので それを使って実装してみました. 補完候補が大量にあるときに、 ざっと眺めることができて便利です. 実際に書く際は補完候補を 検索していった方がいいと思いますが, どんなメソッドがある とか…