Class: MonitorLastUsedDir

Inherits:
Object
  • Object
show all
Defined in:
lib/a-core.rb

Overview

receives messages and tracks the by Roger D. Pack

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeMonitorLastUsedDir

Returns a new instance of MonitorLastUsedDir.



4398
4399
4400
4401
4402
# File 'lib/a-core.rb', line 4398

def initialize
  for event in [SaveBufferEvent, AckInFilesEvent, SearchInFilesEvent, OpenBufferEvent] do
    Arcadia.attach_listener(self, event)
  end
end

Class Method Details

.get_last_dirObject



4419
4420
4421
4422
4423
4424
4425
4426
# File 'lib/a-core.rb', line 4419

def self.get_last_dir
  current = $arcadia['pers']['last.used.dir']
  if current != nil && current != ''
    current
  else
    $pwd # startup dir
  end
end

.set_last(to_this) ⇒ Object

TODO set as private…



4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
# File 'lib/a-core.rb', line 4428

def MonitorLastUsedDir.set_last to_this # TODO set as private...
  return if to_this.nil? or to_this == ''
  if(File.directory?(to_this))
    to_this_dir = to_this
  elsif File.directory? File.dirname(to_this)
    # filename,
    to_this_dir = File.dirname(to_this)
  end
  $arcadia['pers']['last.used.dir'] = File.expand_path(to_this_dir)
end

Instance Method Details

#on_after_ack_in_files(_event) ⇒ Object Also known as: on_after_search_in_files



4408
4409
4410
# File 'lib/a-core.rb', line 4408

def on_after_ack_in_files _event
  MonitorLastUsedDir.set_last _event.dir
end

#on_after_open_buffer(_event) ⇒ Object

we want this one…but…not at startup time…hmm.



4413
4414
4415
# File 'lib/a-core.rb', line 4413

def on_after_open_buffer _event
  MonitorLastUsedDir.set_last _event.file
end

#on_after_save_as_buffer(_event) ⇒ Object



4404
4405
4406
# File 'lib/a-core.rb', line 4404

def on_after_save_as_buffer(_event)
  MonitorLastUsedDir.set_last _event.new_file
end