Zanshin13
Zanshin13

Reputation: 1066

How to open all modified files in PhpStorm

The goal is simple - I want to open all modified files at once. Is there a fast way to do it?

Currently I am using Alt + 9 and then open files, but that is not fast enough (press shortcut, select all, press Enter, manually open files that are "unversioned")

Upvotes: 7

Views: 4087

Answers (1)

iloo
iloo

Reputation: 996

You can create a macro for the keystrokes you mentioned, and assign a keyboard shortcut to it:

  1. Edit | Macros | Start Macro Recording
  2. Perform the keystrokes: ALT+9, CTRL+A, ENTER, ALT+9
  3. Edit | Macros | Stop Macro Recording, give it a name
  4. Settings | Keymap | Macros, add keyboard shortcut.

Upvotes: 13

Related Questions