Reputation: 1066
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
Reputation: 996
You can create a macro for the keystrokes you mentioned, and assign a keyboard shortcut to it:
Edit | Macros | Start Macro Recording
ALT+9
, CTRL+A
, ENTER
, ALT+9
Edit | Macros | Stop Macro Recording
, give it a nameSettings | Keymap | Macros
, add keyboard shortcut.Upvotes: 13