Fix Shorcuts to match Photoshop CC Behaviour#163
Open
pierspad wants to merge 2 commits intoDiolinux:masterfrom
Open
Fix Shorcuts to match Photoshop CC Behaviour#163pierspad wants to merge 2 commits intoDiolinux:masterfrom
pierspad wants to merge 2 commits intoDiolinux:masterfrom
Conversation
Merged
Collaborator
|
PR #145 was merged and caused conflicts in shortcutsrc. Please rebase against master to resolve them. We are interested in your comprehensive updates once resolved. Thanks! |
gabrielalmir
previously requested changes
Apr 4, 2026
Collaborator
gabrielalmir
left a comment
There was a problem hiding this comment.
Marking as changes requested. Please rebase against the latest master branch to resolve the conflicts in shortcutsrc so we can proceed with the merge. Thanks!
09d2bc8 to
241fe08
Compare
Author
|
@gabrielalmir should be good to go |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Many of the shortcuts currently listed in shortcutsrc do not correspond to the shortcuts that are actually present in Photoshop.
I have updated some of the most used to better adhere to:
Adobe Photoshop CC Shortcuts Reference.
Photoshop Keyboard Shortcuts
Key Changes:
Layer Duplication (
Ctrl+J): Remapped from image-duplicate (whole image) to layers-duplicate (active layer).Free Transform (
Ctrl+T): Mapped to tools-unified-transform instead of Scale. It enables also rotation, similar to Photoshop's Free Transform.Fill (
Alt+Del/Ctrl+Del): Swapped to correctly match Foreground vs Background fill colors logic.Marquee Tools (
M/Shift+M): Separated Rectangular and Elliptical selection.I used a short Python script to clean up and sort the file into "Active" and "Inactive" sections to improve readability.
NOTE: GIMP will load shortcuts in memory and overwrite the wil upon exit. Hence this is intended solely for better maintenance.
Below is a screenshot of the changes in a more readable format.
shortcutsrcfile updated at commitca9c6f2Note on deviations:
Some shortcuts differ intentionally from the PDF to accommodate GIMP's workflow:
e.g.
(action “tools-bucket-fill” “<Shift>g”)In Photoshop, both the
Gradient ToolandPaint Bucketshare theGshortcut, and users cycle through the stack usingShift+G.Since GIMP handles tool cycling differently, I mapped:
G-> Gradient ToolShift+G-> Bucket FillIf you agree with adhering to these shortcuts, I plan to submit further adjustments in future PRs. I'm open to feedback if further changes are needed.