Sha256: e816331dfa1bcac5e2fd1818601703a52d376c8eba522813461ba5ec4db8c56c

Contents?: true

Size: 1.67 KB

Versions: 20

Compression:

Stored size: 1.67 KB

Contents

#!/usr/bin/env ruby

require 'tins/xt'
include Tins::GO
require 'utils'
include Utils
require 'tempfile'

def usage
  puts <<-EOT
Usage: #{File.basename($0)} [OPTS] [PATHS]

PATHS are the directory and file paths that are opened in the vim.

Options are

  -w          open a buffer in vim and wait until it is deleted
  -s          read files and files:linenumbers from stdin and open them
  -m          make intermediate non existing directories to file
  -p DURATION pause for this many seconds to wait for vim's reaction
  -S SERVER   specify the server for this edit command
  -h          display this help

Version is #{File.basename($0)} #{Utils::VERSION}.
  EOT
  exit 1
end

$opt = go 'p:S:wsmh'
$opt['h'] and usage

config = Utils::Config::ConfigFile.new
config.configure_from_paths

editor = Editor.new do |c|
  c.wait           = $opt['w']
  c.pause_duration = ($opt['p'] || 1).to_i
  s = $opt['S'] and c.servername = s
  c.mkdir = $opt['m']
end

if $opt['s']
  begin
    until STDIN.eof?
      line = STDIN.gets
      line = line.sub(/.*?([^:\s]+:)/, '\1')
      editor.edit(line)
    end
  rescue Interrupt
    exit 1
  end
else
  argv = ARGV.dup
  if argv.empty?
    unless STDIN.tty?
      file = File.new(File.join(Dir.tmpdir, "edit_tmp.#$$"), 'w')
      until STDIN.eof?
        buffer = STDIN.read(8192)
        file.write buffer
      end
      file.close
      argv << file.path
    end
  end
  if argv.empty?
    editor.start
  else
    if editor.file_linenumber?(argv.first)
      editor.wait = argv.size > 1
      for current_file in argv
        STDOUT.puts "Edit #{current_file}"
        editor.edit current_file
      end
    else
      editor.edit(*argv)
    end
  end
end
exit 0

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
utils-0.0.94 bin/edit
utils-0.0.93 bin/edit
utils-0.0.92 bin/edit
utils-0.0.91 bin/edit
utils-0.0.90 bin/edit
utils-0.0.89 bin/edit
utils-0.0.88 bin/edit
utils-0.0.87 bin/edit
utils-0.0.86 bin/edit
utils-0.0.85 bin/edit
utils-0.0.84 bin/edit
utils-0.0.83 bin/edit
utils-0.0.82 bin/edit
utils-0.0.81 bin/edit
utils-0.0.80 bin/edit
utils-0.0.79 bin/edit
utils-0.0.78 bin/edit
utils-0.0.77 bin/edit
utils-0.0.76 bin/edit
utils-0.0.75 bin/edit