summaryrefslogtreecommitdiff
path: root/lib/irb/context.rb
diff options
context:
space:
mode:
authoraycabta <aycabta@gmail.com>2021-09-27 03:21:39 +0900
committergit <svn-admin@ruby-lang.org>2021-09-27 03:23:48 +0900
commit00cfafc0f5424e31dbf0a13b5bd6345572260f13 (patch)
tree6c3e66e33b2d952ee2807f9edce812343830945f /lib/irb/context.rb
parent51773bed10eb9d8f4d38e1a1e9d9d04d4954380d (diff)
[ruby/irb] Add doc about "echo on assignment"
https://github.com/ruby/irb/commit/5af637b3c1
Diffstat (limited to 'lib/irb/context.rb')
-rw-r--r--lib/irb/context.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/irb/context.rb b/lib/irb/context.rb
index 6dc5d7f0fd..09fd840bd3 100644
--- a/lib/irb/context.rb
+++ b/lib/irb/context.rb
@@ -274,6 +274,18 @@ module IRB
# IRB.CurrentContext.echo_on_assignment = true
# a = "omg" * 10
# #=> omgomgomgomgomgomgomgomgomgomg
+ #
+ # To set the behaviour of showing on assignment in irb:
+ #
+ # IRB.conf[:ECHO_ON_ASSIGNMENT] = :truncate or true or false
+ #
+ # or
+ #
+ # irb_context.echo_on_assignment = :truncate or true or false
+ #
+ # or
+ #
+ # IRB.CurrentContext.echo_on_assignment = :truncate or true or false
attr_accessor :echo_on_assignment
# Whether a newline is put before multiline output.
#