module Ruco class Editor attr_reader :file attr_reader :text_area private :text_area delegate :view, :style_map, :cursor, :insert, :indent, :unindent, :delete, :delete_line, :redo, :undo, :selecting, :selection, :text_in_selection, :reset, :move, :resize, :to => :text_area def initialize(file, options) @file = file @options = options # check for size (10000 lines * 100 chars should be enough for everybody !?) if File.exist?(@file) and File.size(@file) > (1024 * 1024) raise "#{@file} is larger than 1MB, did you really want to open that with Ruco?" end content = (File.exist?(@file) ? File.read(@file) : '') content.tabs_to_spaces! if @options[:convert_tabs] # cleanup newline formats @newline = content.match("\r\n|\r|\n") @newline = (@newline ? @newline[0] : "\n") content.gsub!(/\r\n?/,"\n") @saved_content = content @text_area = EditorArea.new(content, @options) restore_session end def find(text) move(:relative, 0,0) # reset selection return unless start = text_area.content.index(text, text_area.index_for_position+1) finish = start + text.size move(:to_index, finish) selecting{ move(:to_index, start) } true end def modified? @saved_content != text_area.content end def save lines = text_area.send(:lines) lines.each(&:rstrip!) if @options[:remove_trailing_whitespace_on_save] content = lines * @newline File.open(@file,'w'){|f| f.write(content) } @saved_content = content.gsub(/\r?\n/, "\n") true rescue Object => e e.message end def store_session session_store.set(@file, text_area.state.slice(:position, :screen_position)) end private def restore_session if state = session_store.get(@file) text_area.state = state end end def session_store FileStore.new(File.expand_path('~/.ruco/sessions'), :keep => 20) end end end