nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 92a006f51ccce7c313bebb74e90dd6c1c850d63f
parent 7d1cc4ececdd2002a83a1653f64d0e9fa9e72e55
Author: Martin Grenfell <martin_grenfell@msn.com>
Date:   Sun,  4 May 2008 12:01:43 +1200

some handy utils

Diffstat:
ARakefile | 18++++++++++++++++++
1 file changed, 18 insertions(+), 0 deletions(-)
diff --git a/Rakefile b/Rakefile
@@ -0,0 +1,18 @@
+desc "Copy the vim/doc files into ~/.vim"
+task :deploy_local do
+  run "cp plugin/NERD_tree.vim ~/.vim/plugin"
+  run "cp doc/NERD_tree.txt ~/.vim/doc"
+end
+
+
+desc "Create a zip archive for release to vim.org"
+task :zip do
+  abort "NERD_tree.zip already exists, aborting" if File.exist?("NERD_tree.zip")
+  run "zip NERD_tree.zip plugin/NERD_tree.vim doc/NERD_tree.txt"
+end
+
+def run(cmd)
+  puts "Executing: #{cmd}"
+  system cmd
+end
+