Description

A ripl plugin that indents your entered Ruby code.

Install

Install the gem with

gem install ripl-auto_indent

Usage

Add the following line to your ~/.riplrc

require 'ripl/auto_indent'

Configuration options

The plugin rewrites the last line (if the there are closing elements). If this is too buggy for you or your terminal does not support it, you can deactivate it with Ripl.config[:auto_indent_rewrite] = false. You can change the default two spaces used for indention (per level) with Ripl.config[:auto_indent_space]. The plugin depends on ripl-multi_line, so you can set the multi-line prompt with Ripl.config[:multi_line_prompt]

Known bugs

  • Not 100% correct ;)

  • Long lines might cause wrong rewriting (if activated)

J-_-L