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