예제 #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);
 }