コード例 #1
0
ファイル: gvim.php プロジェクト: xihewang/atoum
 public function __construct()
 {
     parent::__construct('gvim +%2$d %1$s > /dev/null &');
 }
コード例 #2
0
ファイル: gedit.php プロジェクト: xihewang/atoum
 public function __construct()
 {
     parent::__construct('gedit %1$s +%2$d > /dev/null &');
 }
コード例 #3
0
ファイル: macvim.php プロジェクト: xihewang/atoum
 public function __construct()
 {
     parent::__construct('mvim --remote-silent +%2$s %1$s');
 }
コード例 #4
0
ファイル: phpstorm.php プロジェクト: xihewang/atoum
 public function __construct($command = null)
 {
     $command = $command ?: '/Applications/PhpStorm.app/Contents/MacOS/webide';
     parent::__construct($command);
 }