1
1

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.

Mac,PhpStorm,Laravelショートカット備忘録

Last updated at Posted at 2018-05-02

Mac

Search Everywhere

Ctl + Space

かな削除

環境設定 > キーボード > 入力ソースのカタナカのチェックを外す。

かな変換

Opt + X
たまに忘れる。

Mission Controlの切り替え削除

PhpStormのタブ切り替えをCtr + 矢印で行うため。
Mission Controlの切り替えは3本指で行なっています。
mac01.png

Terminal

PHPビルトインサーバのプロセス削除

ps aux | grep serve
kill 9999

PhpStorm

ショートカット系

Search Everywhere

Shift *2

新規ファイル作成

Cmd + N

行頭

Cmd + ←

行の削除(Delete line)

Cmd + delete
Ctl + Shift + K ← 追加

同じ単語の選択(Add Selection for Next Occurrence)

Ctl + G ← 削除
Cmd + d ← 変更

単語の選択

alt + ↑

Refactor This

Ctl + T

PhpDoc定義、変数初期化

Alt + Enter
php.png

四則演算展開

???
ないみたいですね。残念。

Git操作

コミット

Cmd + K

プッシュ

Cmd + Shift + K

Add

新規ファイルはaddしないとコミット時の選択肢に出てこない。
https://www.jetbrains.com/help/phpstorm/file-status-highlights.html

リモートブランチをローカルにcheckoutする

コマンドラインからの方が早いかも。
スクリーンショット 2018-05-10 1.11.59.png

ブランチの状態

スクリーンショット 2018-05-10 1.14.37.png
黄:現在のブランチ
緑:ローカル
紫:リモート

スニペット

Preferences > Editor > Live Templates > PHP

fore -> foreach
prif -> private function
pubf -> public function
_c   -> public function __construct ← 追加
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?