Variable: ruby-parenless-call-arguments-indent

ruby-parenless-call-arguments-indent is a customizable variable defined in ruby-mode.el.gz.

Value

t

Documentation

Non-nil to align arguments in a parenless call vertically.

Example:

  qux :+,
      bar,
      :[]=,
      bar

Set it to nil to align to the beginning of the statement:

  qux :+,
    bar,
    :[]=,
    bar

Only has effect when ruby-use-smie is t.

This variable was added, or its default value changed, in Emacs 29.1.

Probably introduced at or before Emacs version 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ruby-mode.el.gz
(defcustom ruby-parenless-call-arguments-indent t
  "Non-nil to align arguments in a parenless call vertically.

Example:

  qux :+,
      bar,
      :[]=,
      bar

Set it to nil to align to the beginning of the statement:

  qux :+,
    bar,
    :[]=,
    bar

Only has effect when `ruby-use-smie' is t."
  :type 'boolean
  :safe 'booleanp
  :version "29.1")