1
0
Fork 0
mirror of https://github.com/fmap/muflax65ngodyewp.onion synced 2024-07-01 10:46:49 +02:00
muflax65ngodyewp.onion/commands/last.rb

18 lines
322 B
Ruby
Raw Normal View History

2012-04-14 13:57:18 +02:00
usage 'last'
summary 'open last page'
description 'Opens last page in Emacs.'
module Nanoc::CLI::Commands
class Last < ::Nanoc::CLI::CommandRunner
2012-04-14 13:57:18 +02:00
def run
page = daily_logs.last
2012-04-14 13:57:18 +02:00
puts "editing: #{page}..."
system "emacs-gui #{page}"
end
end
end
runner Nanoc::CLI::Commands::Last
2012-04-14 13:57:18 +02:00