Class: Reline::KillRing
Relationships & Source Files | |
Namespace Children | |
Modules:
| |
Classes:
| |
Inherits: | Object |
Defined in: | lib/reline/kill_ring.rb |
Class Method Summary
- .new(max = 1024) ⇒ KillRing constructor
Instance Method Summary
Constructor Details
.new(max = 1024) ⇒ KillRing
# File 'lib/reline/kill_ring.rb', line 59
def initialize(max = 1024) @ring = RingBuffer.new(max) @ring_pointer = nil @buffer = nil @state = State::FRESH end
Instance Method Details
#append(string, before_p = false)
[ GitHub ]# File 'lib/reline/kill_ring.rb', line 66
def append(string, before_p = false) case @state when State::FRESH, State::YANK @ring << RingPoint.new(string) @state = State::CONTINUED when State::CONTINUED, State::PROCESSED if before_p @ring.head.str.prepend(string) else @ring.head.str.concat(string) end @state = State::CONTINUED end end