Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/purcell/ac-inf-ruby
An Emacs auto-complete source for use in inf-ruby sessions
https://github.com/purcell/ac-inf-ruby
Last synced: 23 days ago
JSON representation
An Emacs auto-complete source for use in inf-ruby sessions
- Host: GitHub
- URL: https://github.com/purcell/ac-inf-ruby
- Owner: purcell
- Created: 2013-11-05T10:40:52.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2024-11-07T07:26:35.000Z (3 months ago)
- Last Synced: 2024-11-07T08:26:35.493Z (3 months ago)
- Language: Emacs Lisp
- Size: 4.88 KB
- Stars: 10
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Melpa Status](http://melpa.org/packages/ac-inf-ruby-badge.svg)](http://melpa.org/#/ac-inf-ruby)
[![Melpa Stable Status](http://stable.melpa.org/packages/ac-inf-ruby-badge.svg)](http://stable.melpa.org/#/ac-inf-ruby)inf-ruby completion source for Emacs auto-complete package
==========================================================This plugin provides an [auto-complete](http://cx4a.org/software/auto-complete/)
completion source for use in [inf-ruby](https://github.com/nonsequitur/inf-ruby) buffers.Installation
=============First, ensure `auto-complete` and `inf-ruby` are installed: I recommend
using packages from [MELPA][melpa].You'll need both `auto-complete` and `inf-ruby` to be enabled and
working, so please consult the corresponding documentation is you have
any trouble with this.Next, install `ac-inf-rub`. If you choose not to use the convenient
package in [MELPA][melpa], you'll need to add the directory containing
`ac-inf-ruby.el` to your `load-path`, and then `(require
'ac-inf-ruby)`.`ac-inf-ruby` provides an `inf-ruby`-specific completion source,
so `auto-complete` needs to be told to use them when `inf-ruby-mode` is
active. To do this, put the following code in your emacs init file to```el
(eval-after-load 'auto-complete
'(add-to-list 'ac-modes 'inf-ruby-mode))
(add-hook 'inf-ruby-mode-hook 'ac-inf-ruby-enable)
```If you want to trigger `auto-complete` using TAB in `inf-ruby` buffers, you
should bind it directly:```el
(eval-after-load 'inf-ruby '
'(define-key inf-ruby-mode-map (kbd "TAB") 'auto-complete))
```Usage
=====`ac-inf-ruby` should now automatically be enabled in new `inf-ruby` sessions.
Simply trigger auto-completion, and completion candidates supplied by
`inf-ruby` should be displayed, with the "r" symbol on the right hand side of the
completion pop-up.[melpa]: http://melpa.org
Acknowledgements
================`ac-inf-ruby` was written by [Steve Purcell](https://github.com/purcell).
[💝 Support this project and my other Open Source work via Patreon](https://www.patreon.com/sanityinc)
[💼 LinkedIn profile](https://uk.linkedin.com/in/stevepurcell)
[✍ sanityinc.com](http://www.sanityinc.com/)