summaryrefslogtreecommitdiff
path: root/lib/irb/input-method.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/irb/input-method.rb')
-rw-r--r--lib/irb/input-method.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/irb/input-method.rb b/lib/irb/input-method.rb
index ed5c53c385..992968ffdc 100644
--- a/lib/irb/input-method.rb
+++ b/lib/irb/input-method.rb
@@ -398,7 +398,8 @@ module IRB
formatter = RDoc::Markup::ToAnsi.new
formatter.width = width
dialog.trap_key = alt_d
- message = 'Press Alt+d to read the full document'
+ mod_key = RUBY_PLATFORM.match?(/darwin/) ? "Option" : "Alt"
+ message = "Press #{mod_key}+d to read the full document"
contents = [message] + doc.accept(formatter).split("\n")
y = cursor_pos_to_render.y