Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

Sublime Text2 | RubyTestプラグインの設定ファイルのアップデートによるエラーを修正

概要

RubyTestプラグインの設定ファイルのアップデートによるエラーを修正

詳細

2013/10/08のアップデート時にRubyTestプラグインの設定ファイル読み込み時に
エラーが発生するようになりました。

Windows環境の場合)
%Sublime Text2%Packages\RubyTest\Default (Windows).sublime-keymap
の20行近辺の

  { "keys": ["ctrl+shift+e"], "command": "run_last_ruby_test",
    "context": [ { "key": "selector", "operator": "equal",
       "operand": "source.ruby, source.rspec, text.gherkin.feature"
               } ], // test last test file
  },

  { "keys": ["ctrl+shift+e"], "command": "run_last_ruby_test",
    "context": [ { "key": "selector", "operator": "equal",
       "operand": "source.ruby, source.rspec, text.gherkin.feature"
               } ]
  },

にすることで正常に起動出来るようになりました。
「, // test last test file」の部分を消す