From 744b755a2d2b9961d7934206613418d1fb539788 Mon Sep 17 00:00:00 2001 From: Kyle West Date: Tue, 24 Jan 2012 14:44:47 -0500 Subject: [PATCH] removed left over references to Command-T --- README.md | 2 +- bin/yadr/yadr-init-plugins | 11 ++--------- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 78ab14f..10f9ae5 100644 --- a/README.md +++ b/README.md @@ -258,7 +258,7 @@ files contain key mappings as well (TODO: probably will move them out to skwp-ke * ,t - CtrlP fuzzy file selector * ,b - CtrlP buffer selector * Cmd-Shift-P - Clear CtrlP cache - * ,jm jump (command-t) app/models + * ,jm jump (via CtrlP) app/models * ,jc app/controllers * ,jv app/views * ,jh app/helpers diff --git a/bin/yadr/yadr-init-plugins b/bin/yadr/yadr-init-plugins index 7793b8b..4529b08 100755 --- a/bin/yadr/yadr-init-plugins +++ b/bin/yadr/yadr-init-plugins @@ -2,18 +2,11 @@ require File.join(File.dirname(__FILE__), 'default_libs') GitStyleBinary.command do - version "yadr-init-plugins 1.0" - -short_desc "Initialize all submodules. Run this every time you pull a new yadr version." + version "yadr-init-plugins 1.0" + short_desc "Initialize all submodules. Run this every time you pull a new yadr version." run do |command| system("cd ~/.dotfiles && git submodule init && git submodule update") - - # Compile Command-T - if File.directory?(File.expand_path("~/.dotfiles/vim/bundle/skwp-Command-T")) - puts "Compiling Command-T plugin..." - system("cd ~/.dotfiles/vim/bundle/skwp-Command-T && rake make") - end end end