0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PhpStormのExternal Toolsをフル活用しよう

Posted at

はじめに

IDEに外部ツールの実行機能はだいたい入ってる機能ではありますが、PhpStormのExternal Toolsはほんと気が利くんですよ~
もう私なんてなんでも設定しちゃうぞ~!ってStormにゾッコンです!

Tree Viewで選択したディレクトリやファイルを元に実行

例)Tree Viewからのls -l

例えば、logフォルダ内のファイルサイズを確認したい時どうしてますか?
Terminal Viewを開いて、移動して、、、なんてやってたら面倒ですよね。

External Toolsに設定してしまえば、こんな感じですぐls -lですよ~

ls -l 今見て思いましたが、グループ名がlinuxってなんか意味わからんですね...

設定

こんな感じに設定してやりましょう。

Program:    ls
Arguments:  -l $FilePath$
Project Viewにチェック
設定

Editorで選択した文字を元に実行

例)選択した文字をURL Encoding

選択した文字をURL Encodingしたいって時よくありますよね!

urlencode

設定

こんな感じに設定してやりましょう。

Program:    php
Arguments:  -r "echo urlencode('$SelectedText$');"
Editor menuにチェック
設定 こんなもんEditorでも標準でついとるって!?

おわりに

PhpStormで楽チンansible-vaultみたいにansibleコマンドやよく使うやつをどんどん登録してみましょう!

awscliとか登録し出したら、キリなさそうですね(^^;

0
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?