ruby / debug

Debugging functionality for Ruby
BSD 2-Clause "Simplified" License
1.14k stars 127 forks source link

`list -` doesn't work with IRB console #1109

Open AlexWayfer opened 4 months ago

AlexWayfer commented 4 months ago

Your environment

Describe the bug

Here is the list - command to see predecessor lines (useful after regular list usage).

It works in a default console, but not in IRB: it considers - as an operator, I suppose.

To Reproduce

  1. binding.break in a code.
  2. list in IRB console.
  3. list - in IRB console.

Expected behavior

Working list - command (or an alias).

Additional context

irb:rdbg(#<RSpec::ExampleGroups::UIClu...):004* l -
irb:rdbg(#<RSpec::ExampleGroups::UIClu...):005* l - # debug command

^C
st0012 commented 4 months ago

👋 Can you also provide the IRB version?

You can simply paste the output of the irb_info command.

AlexWayfer commented 4 months ago

Of course:

irb:rdbg(#<RSpec::ExampleGroups::UIClu...):002> irb_info
Ruby version: 3.2.2
IRB version: irb 1.14.0 (2024-07-06)
InputMethod: RelineInputMethod with Reline 0.5.9
Completion: Autocomplete, RegexpCompletor
RUBY_PLATFORM: x86_64-linux
LANG env: en_US.UTF-8
East Asian Ambiguous Width: 1

As I can see, it's the latest version.