1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

Merge pull request #2070 from bcgraham/fix-show-negative-range

Allow negative ranges in hist --show
This commit is contained in:
Kyrylo Silin 2019-09-03 14:20:42 +08:00 committed by GitHub
commit fa97d5c299
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View file

@ -52,8 +52,6 @@ class Pry
@history.take_lines(1, opts[:head] || 10)
elsif opts.present?(:tail)
@history.take_lines(-(opts[:tail] || 10), opts[:tail] || 10)
elsif opts.present?(:show)
@history.between(opts[:show])
else
@history
end

View file

@ -132,6 +132,15 @@ describe "hist" do
expect(out).to match(/b\n\d+:.*c\n\d+:.*d/)
end
it 'should show lines between offsets A and B with the --show switch' do
("a".."f").each do |v|
@hist.push v
end
out = @t.eval 'hist --show -4..-2'
expect(out).to eq "3: c\n4: d\n5: e\n"
end
it "should store a call with `--replay` flag" do
@t.eval ":banzai"
@t.eval "hist --replay 1"