📋
CLIでSublime Text 2のCommandを叩く際の引数の渡し方
subl <files>; subl --command '<command> {"<param>":"<arg>"}'
subl <files>
でファイルを開いたあと、--command
引数の後に文字列でコマンド名とJSONを一緒に渡す。文字列で渡すのがポイント。かなりハマりました。
subl <files>; subl --command '<command> {"<param>":"<arg>"}'
subl <files>
でファイルを開いたあと、--command
引数の後に文字列でコマンド名とJSONを一緒に渡す。文字列で渡すのがポイント。かなりハマりました。
Discussion