# File lib/sup/modes/text-mode.rb, line 10 def initialize text="", filename=nil @text = text @filename = filename update_lines buffer.mark_dirty if buffer super() end
# File lib/sup/modes/text-mode.rb, line 47 def << line @lines = [0] if @text.empty? @text << line @lines << @text.length if buffer ensure_mode_validity buffer.mark_dirty end end
# File lib/sup/modes/text-mode.rb, line 61 def [] i return nil unless i < @lines.length @text[@lines[i] ... (i + 1 < @lines.length ? @lines[i + 1] - 1 : @text.length)].normalize_whitespace # (@lines[i] ... (i + 1 < @lines.length ? @lines[i + 1] - 1 : @text.length)).inspect end
# File lib/sup/modes/text-mode.rb, line 57 def lines @lines.length - 1 end
# File lib/sup/modes/text-mode.rb, line 23 def pipe command = BufferManager.ask(:shell, "pipe command: ") return if command.nil? || command.empty? output = pipe_to_process(command) do |stream| @text.each { |l| stream.puts l } end if output BufferManager.spawn "Output of '#{command}'", TextMode.new(output.ascii) else BufferManager.flash "'#{command}' done!" end end
# File lib/sup/modes/text-mode.rb, line 18 def save_to_disk fn = BufferManager.ask_for_filename :filename, "Save to file: ", @filename save_to_file(fn) { |f| f.puts text } if fn end
# File lib/sup/modes/text-mode.rb, line 38 def text= t @text = t update_lines if buffer ensure_mode_validity buffer.mark_dirty end end
# File lib/sup/modes/text-mode.rb, line 69 def update_lines pos = @text.find_all_positions("\n") pos.push @text.length unless pos.last == @text.length - 1 @lines = [0] + pos.map { |x| x + 1 } end