lib/timetrap/config.rb in timetrap-1.8.2 vs lib/timetrap/config.rb in timetrap-1.8.3.beta1

- old
+ new

@@ -22,10 +22,13 @@ "#{ENV['HOME']}/.timetrap/formatters" ], # formatter to use when display is invoked without a --format option 'default_formatter' => 'text', # the default command to when you run `t`. default to printing usage. - 'default_command' => nil + 'default_command' => nil, + # only allow one running entry at a time. + # when set to false it is possible to have one running entry per sheet. + 'sheets_are_exclusive' => false } end def [](key) overrides = File.exist?(PATH) ? YAML.load(erb_render(File.read(PATH))) : {}