RubyGems Navigation menu

vimdo 1.2.1

Vimdo is a ruby gem to automate tasks with vim remote servers. Predefined tasks include diff, merge, etc. You can define your own recipes to run tasks with Vim. For example, you can define `DirDiff` recipe: ```ruby module VimDo class CLI < Thor desc "dirdiff", "directory diff in vim" def dirdiff(from, to) [from, to].each do |f| unless File.directory?(f) raise PathError "#{f} is not directory!" end end from, to = [from, to].map {|f| File.expand_path(f) } commands(%Q{exec 'DirDiff ' fnameescape("#{from}") fnameescape("#{to}")}) end end end ``` Then run `vimdo dirdiff path/to/a path/to/b` from the command line or other tools

Gemfile:
= 複製 已複製

安裝:
=

版本列表:

  1. 1.2.1 - October 29, 2013 (15.5 KB)
  2. 1.2.0 - April 21, 2013 (15.5 KB)
  3. 1.1.1 - April 19, 2013 (15.5 KB)
  4. 1.1.0 - April 07, 2013 (11.0 KB)
  5. 1.0.2 - April 07, 2013 (10.0 KB)

Runtime 相依性套件 (3):

autocompletion >= 0.0.3
thor >= 0.18.0
vimrunner >= 0.3.0

Development 相依性套件 (7):

hoe >= 0
hoe-git >= 0
rake >= 10.0.0
rdoc ~> 4.0

擁有者:

作者:

  • Zhao Cai

SHA 256 checksum:

54aa335f639db8b1c8abb43e581bd6bf5a664f138f14554527c71f88a358804c

總下載次數 14,007

這個版本 3,499

License:

GPL-3

Ruby 版本需求:

相關連結: