RubyGems Navigation menu

vimdo 1.2.0

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.5KB)
  2. 1.2.0 - April 21, 2013 (15.5KB)
  3. 1.1.1 - April 19, 2013 (15.5KB)
  4. 1.1.0 - April 07, 2013 (11KB)
  5. 1.0.2 - April 07, 2013 (10KB)

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チェックサム:

4ea8224dae3c60686ce5b837793b80dc754f0fd24be779821c54c31c80d6e8cd

累計ダウンロード数 13,959

このバージョンのみ 2,623

ライセンス:

GPL-3

必要なRubyのバージョン: なし

リンク: